namespace HStation.Model { /// /// /// public interface IRevitParter { /// /// 型号 /// public string ModelType { get; set; } /// /// 属性值列表 /// List PropValueList { get; set; } /// /// 位置 /// public RevitBoundingBox BoundingBox { get; set; } } }