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.Alarm { public class AlarmUserEntity : ObservableObject { public long id { get; set; } private string _name; public string name { get => _name; set => SetProperty(ref _name, value); } private string _phone; public string phone { get => _phone; set => SetProperty(ref _phone, value); } private int _sms; public int sms { get => _sms; set => SetProperty(ref _sms, value); } private int _state; public int state { get => _state; set => SetProperty(ref _state, value); } private int _tel; public int tel { get => _tel; set => SetProperty(ref _tel, value); } private int _vip; public int vip { get => _vip; set => SetProperty(ref _vip, value); } public List alarmPermissions { get; set; } = new List(); private bool _IsExpanded; public bool IsExpanded { get => _IsExpanded; set => SetProperty(ref _IsExpanded, value); } public List AlarmDetailList { get; set; } = new List(); } }