using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Text; using System.Threading.Tasks; namespace PBS.Vmo { public enum ePropertyType { /// /// 公寓住宅 /// [Display(Name = "公寓住宅")] Building = 0 } }