namespace HStation.Model
{
///
/// 组件
///
public class RevitParter
{
///
///
///
public RevitParter() { }
///
///
///
public RevitParter(Model.RevitParter rhs)
{
this.Id = rhs.Id;
this.Name = rhs.Name;
this.Code = rhs.Code;
this.Flags = rhs.Flags;
this.Description = rhs.Description;
}
///
/// Id
///
[JsonProperty("Id", NullValueHandling = NullValueHandling.Ignore)]
public string Id { get; set; }
///
/// 名称
///
[JsonProperty("名称", NullValueHandling = NullValueHandling.Ignore)]
public string Name { get; set; }
///
/// 编码
///
[JsonProperty("编码", NullValueHandling = NullValueHandling.Ignore)]
public string Code { get; set; }
///
/// 标签
///
[JsonProperty("标签", NullValueHandling = NullValueHandling.Ignore)]
public List Flags { get; set; }
///
/// 说明
///
[JsonProperty("说明", NullValueHandling = NullValueHandling.Ignore)]
public string Description { get; set; }
}
}