| 1234567891011121314151617181920212223242526272829303132 |
- 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 partial class AlarmPersonne : ObservableObject
- {
- private long _id;
- public long id { get => _id; set => SetProperty(ref _id, value); }
- private int _level;
- public int level { get => _level; set => SetProperty(ref _level, value); }
- 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 num;
- public int Num { get => num; set => SetProperty(ref num, value); }
- }
- }
|