namespace HStation.Dto
{
///
///
///
public class XhsProjectItemModelDto
{
///
///
///
public XhsProjectItemModelDto()
{ }
///
///
///
public XhsProjectItemModelDto(HStation.Model.XhsProjectItemModel 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.Flags = rhs.Flags;
this.BimfaceID = rhs.BimfaceID;
}
///
/// 项目ID
///
public long ProjectID { get; set; }
///
/// 在BIMFACE中的ID
///
public string BimfaceID { get; set; }
///
/// 名称
///
public string Name { get; set; }
///
/// 参数
///
public string Paras { get; set; }
///
/// 标签
///
public string Flags { get; set; }
///
/// 标志
///
public string TagName { get; set; }
///
/// 使用状态
///
public int UseStatus { get; set; }
///
/// 排序码
///
public int SortCode { get; set; }
///
/// 说明
///
public string Description { get; set; }
///
/// 版本
///
public int Version { get; set; }
}
}