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