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ů.

UserDefinedField.cs 486B

1234567891011121314151617
  1. using System.ComponentModel.DataAnnotations.Schema;
  2. namespace UnivateProperties_API.Model.Properties
  3. {
  4. public class UserDefinedField : BaseEntity
  5. {
  6. #region Properties
  7. [ForeignKey("Group")]
  8. public int GroupId { get; set; }
  9. public string FieldName { get; set; }
  10. public string FieldType { get; set; }
  11. public int Rank { get; set; }
  12. public virtual UserDefinedGroup Group { get; set; }
  13. #endregion
  14. }
  15. }