duheng
2024-07-16 e18218195caa7fe3af4efa3cd2e53a53a00d98f7
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.Core
{
    public class XhsProjectModelViewModel : XhsProjectItemModelDto
    {
        public XhsProjectModelViewModel(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;
        }
    }
}