AlarmPersonne.cs 858 B

1234567891011121314151617181920212223242526272829303132
  1. using CommunityToolkit.Mvvm.ComponentModel;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace ivf_tl_Entity.Entity.Alarm
  8. {
  9. public partial class AlarmPersonne : ObservableObject
  10. {
  11. private long _id;
  12. public long id { get => _id; set => SetProperty(ref _id, value); }
  13. private int _level;
  14. public int level { get => _level; set => SetProperty(ref _level, value); }
  15. private string _name;
  16. public string name { get => _name; set => SetProperty(ref _name, value); }
  17. private string _phone;
  18. public string phone { get => _phone; set => SetProperty(ref _phone, value); }
  19. private int num;
  20. public int Num { get => num; set => SetProperty(ref num, value); }
  21. }
  22. }