namespace Yw.Dto
|
{
|
/// <summary>
|
///
|
/// </summary>
|
public class BimfaceFileLabelDto
|
{
|
/// <summary>
|
///
|
/// </summary>
|
public BimfaceFileLabelDto() { }
|
|
/// <summary>
|
///
|
/// </summary>
|
public BimfaceFileLabelDto(Model.BimfaceFileLabel rhs)
|
{
|
this.ID = rhs.ID;
|
this.BimfaceFileID = rhs.BimfaceFileID;
|
this.Catagory = rhs.Catagory;
|
this.Content = rhs.Content;
|
}
|
|
/// <summary>
|
/// id
|
/// </summary>
|
public long ID { get; set; }
|
|
/// <summary>
|
/// Bimface文件id
|
/// </summary>
|
public long BimfaceFileID { get; set; }
|
|
/// <summary>
|
/// 分类
|
/// </summary>
|
public string Catagory { get; set; }
|
|
/// <summary>
|
/// 内容
|
/// </summary>
|
public string Content { get; set; }
|
}
|
}
|