duheng
2024-06-25 8179d10fba0a4b26616b5bf47b3fc2ccc705431d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
using HStation.Dto;
 
namespace HStation.WinFrmUI.Xhs.Project
{
    public class ProjectModelViewModel : XhsProjectItemModelDto
    {
        public ProjectModelViewModel(XhsProjectItemModelDto rhs)
        {
            this.ProjectID = rhs.ProjectID;
            this.Name = rhs.Name;
            this.TagName = rhs.TagName;
            this.SortCode = rhs.SortCode;
            this.Description = rhs.Description;
            this.Version = rhs.Version;
            this.UseStatus = rhs.UseStatus;
            this.UploadStatus = rhs.UploadStatus;
            this.Flags = rhs.Flags;
            this.BimfaceID = rhs.BimfaceID;
        }
    }
}