API
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

UserDefinedGroup.cs 407B

123456789101112131415
  1. using System.Collections.Generic;
  2. namespace UnivateProperties_API.Model.Properties
  3. {
  4. public class UserDefinedGroup : BaseEntity
  5. {
  6. #region Properties
  7. public string Description { get; set; }
  8. public PropertyUsageType UsageType { get; set; }
  9. public int Rank { get; set; }
  10. public ICollection<UserDefinedField> Fields { get; set; }
  11. #endregion
  12. }
  13. }