namespace Yw.Model
|
{
|
/// <summary>
|
/// Bimface文件 Label
|
/// </summary>
|
public class BimfaceFileLabel : BaseModel, System.ICloneable
|
{
|
|
/// <summary>
|
///
|
/// </summary>
|
public BimfaceFileLabel() { }
|
|
/// <summary>
|
///
|
/// </summary>
|
public BimfaceFileLabel(BimfaceFileLabel rhs) : base(rhs)
|
{
|
this.BimfaceFileID = rhs.BimfaceFileID;
|
this.Catagory = rhs.Catagory;
|
this.Content = rhs.Content;
|
}
|
|
/// <summary>
|
///
|
/// </summary>
|
public void Reset(BimfaceFileLabel rhs)
|
{
|
this.ID = rhs.ID;
|
this.BimfaceFileID = rhs.BimfaceFileID;
|
this.Catagory = rhs.Catagory;
|
this.Content = rhs.Content;
|
}
|
|
/// <summary>
|
/// Bimface文件id
|
/// </summary>
|
public long BimfaceFileID { get; set; }
|
|
/// <summary>
|
/// 分类
|
/// </summary>
|
public string Catagory { get; set; }
|
|
/// <summary>
|
/// 内容
|
/// </summary>
|
public string Content { get; set; }
|
|
/// <summary>
|
///
|
/// </summary>
|
public BimfaceFileLabel Clone()
|
{
|
return new BimfaceFileLabel(this);
|
}
|
|
object ICloneable.Clone()
|
{
|
return Clone();
|
}
|
|
}
|
}
|