using System.ComponentModel.DataAnnotations;
namespace PBS
{
public enum eModelTemplateType
{
///
/// 地基
///
[Display(Name = "地基")]
Foundation = 0,
///
/// 楼层
///
[Display(Name = "楼层")]
Floor = 1,
///
/// 单元
///
[Display(Name = "单元")]
Unit = 2,
///
/// 自定义
///
[Display(Name = "自定义")]
Custom = 999,
}
}