public partial class EntryTypeModel : ObservableObject
{
[PrimaryKey, AutoIncrement]
public int Id { get; set; }
public string FirebaseId { get; set; }
public string FirebaseUserAuthId { get; set; }
string name;
public string Name
{
get => name;
set => SetProperty(ref name, value);
}
public EntryTypeAnonmaly Anomaly { get; set; }
}