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