Max Mannstein

Subscribe :)

MAUI In App Purchases – How to implement it

    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; }
    }

Leave a Reply

Your email address will not be published. Required fields are marked *