duheng
2024-06-20 1d35b151e33d8919d578e3db321067b881eac1d5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
using HStation.Dto;
 
namespace HStation.WinFrmUI.Xhs.Project
{
    public class ProjectViewModel : XhsProjectDto
    {
        public ProjectViewModel(XhsProjectDto rhs)
        {
            this.ID = rhs.ID;
            this.Name = rhs.Name;
            this.Paras = rhs.Paras;
            this.Flags = rhs.Flags;
            this.TagName = rhs.TagName;
            this.UseStatus = rhs.UseStatus;
            this.SortCode = rhs.SortCode;
            this.Description = rhs.Description;
            this.CreateTime = rhs.CreateTime;
            this.CreateUserID = rhs.CreateUserID;
            this.Version = rhs.Version;
            this.MapPosition = rhs.MapPosition;
        }
    }
}