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