| 123456789101112131415161718192021222324252627282930 |
- 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.Mark
- {
- public class MarkLevelEntity : ObservableObject
- {
- public long id { get; set; }
- private int _num;
- public int num { get => _num; set => SetProperty(ref _num, value); }
- private string _info;
- public string info { get => _info; set => SetProperty(ref _info, value); }
- private int _min;
- public int min { get => _min; set => SetProperty(ref _min, value); }
- private int _max;
- public int max { get => _max; set => SetProperty(ref _max, value); }
- private string _name;
- public string name { get => _name; set => SetProperty(ref _name, value); }
- }
- }
|