| 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.Mark
- {
- public class MarkKeyEntity : 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 string _markKey;
- public string markKey { get => _markKey; set => SetProperty(ref _markKey, value); }
- private int _keyNode;
- public int keyNode { get => _keyNode; set => SetProperty(ref _keyNode, value); }
- private string _name;
- public string name { get => _name; set => SetProperty(ref _name, value); }
- private int _orderNum;
- public int orderNum { get => _orderNum; set => SetProperty(ref _orderNum, value); }
- }
- }
|