API
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

UserDefinedGroup.cs 629B

12345678910111213141516171819202122232425
  1. using System.Collections.Generic;
  2. using System.ComponentModel.DataAnnotations.Schema;
  3. namespace UnivateProperties_API.Model.Properties
  4. {
  5. public class UserDefinedGroup : BaseEntity
  6. {
  7. #region Properties
  8. public string Description { get; set; }
  9. public PropertyUsageType UsageType { get; set; }
  10. public int Rank { get; set; }
  11. public ICollection<UserDefinedField> Fields { get; set; }
  12. [NotMapped]
  13. public string PropertyUsageType
  14. {
  15. get
  16. {
  17. return UsageType.ToString();
  18. }
  19. }
  20. #endregion
  21. }
  22. }