ningshuxia
2025-03-28 ce9752fd657c6689ea64929eb962146e2730624e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
namespace HStation.WinFrmUI.Basic
{
    public class SysPropChoiceViewModel
    {
        public SysPropChoiceViewModel()
        { }
 
        public SysPropChoiceViewModel(Yw.Vmo.SysPropChoiceVmo rhs)
        {
            this.PropID = rhs.PropID;
            this.ID = rhs.ID;
            this.Choice = rhs.Choice;
            this.Name = rhs.Name;
            this.Description = rhs.Description;
            this.SortCode = rhs.SortCode;
        }
 
        public long ID { get; set; }
 
        public long PropID { get; set; }
 
        public string Name { get; set; }
 
        public string Choice { get; set; }
 
        public int SortCode { get; set; }
 
        public string Description { get; set; }
    }
}