16160f6424
Initial version of the data model Includes EF initialization and migrations EF migrations are applied on application start
8 lines
157 B
C#
8 lines
157 B
C#
using CommunityToolkit.Mvvm.ComponentModel;
|
|
|
|
namespace TournamentOrganizer.ViewModels;
|
|
|
|
public abstract class ViewModelBase : ObservableObject
|
|
{
|
|
}
|