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

Individual.cs 736B

123456789101112131415161718192021222324252627
  1. using System.Collections.Generic;
  2. using System.ComponentModel.DataAnnotations;
  3. using System.ComponentModel.DataAnnotations.Schema;
  4. using UnivateProperties_API.Model.Misc;
  5. namespace UnivateProperties_API.Model.Users
  6. {
  7. public class Individual : Person
  8. {
  9. #region Constructor
  10. public Individual()
  11. {
  12. }
  13. #endregion Constructor
  14. #region Properties
  15. public string IdNumber { get; set; }
  16. public string CompanyRegNumber { get; set; }
  17. public string MaritalStatus { get; set; }
  18. public int? AddressId { get; set; }
  19. public string IncomeTaxNumber { get; set; }
  20. public virtual Address Address { get; set; }
  21. #endregion Properties
  22. }
  23. }