lixiaojun
2024-07-31 44d9b3ffe4a3b743dbc9c6023e80f77e2975283e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
using Yw.Dto;
 
namespace HStation.WinFrmUI.Basic
{
    public class SysPropChoiceViewModel : Yw.Dto.SysPropChoiceDto
    {
        public SysPropChoiceViewModel(SysPropChoiceDto 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;
        }
    }
}