using CommunityToolkit.Mvvm.ComponentModel; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ivf_tl_Entity.Entity { public class ButtonEntity: ObservableObject { public long id { get; set; } private int _num; public int num { get => _num; set => SetProperty(ref _num, value); } private string _buttonName; public string buttonName { get => _buttonName; set => SetProperty(ref _buttonName, value); } private int _maxHour; public int maxHour { get => _maxHour; set => SetProperty(ref _maxHour, value); } private int _minHour; public int minHour { get => _minHour; set => SetProperty(ref _minHour, value); } private int _orderNum; public int orderNum { get => _orderNum; set => SetProperty(ref _orderNum, value); } private int _state; public int state { get => _state; set => SetProperty(ref _state, value); } private string _type; public string type { get => _type; set => SetProperty(ref _type, value); } } }