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;
|
}
|
}
|
}
|