MarkLevelEntity.cs 876 B

123456789101112131415161718192021222324252627282930
  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.Mark
  8. {
  9. public class MarkLevelEntity : ObservableObject
  10. {
  11. public long id { get; set; }
  12. private int _num;
  13. public int num { get => _num; set => SetProperty(ref _num, value); }
  14. private string _info;
  15. public string info { get => _info; set => SetProperty(ref _info, value); }
  16. private int _min;
  17. public int min { get => _min; set => SetProperty(ref _min, value); }
  18. private int _max;
  19. public int max { get => _max; set => SetProperty(ref _max, value); }
  20. private string _name;
  21. public string name { get => _name; set => SetProperty(ref _name, value); }
  22. }
  23. }