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 405B

123456789101112131415
  1. using System.Collections.Generic;
  2. namespace UnivateProperties_API.Model.Property
  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. }