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

1234567891011121314151617181920
  1. using System.Collections.Generic;
  2. using System.ComponentModel.DataAnnotations;
  3. using System.ComponentModel.DataAnnotations.Schema;
  4. namespace UnivateProperties_API.Model.Users
  5. {
  6. public class Individual : Person
  7. {
  8. #region Constructor
  9. public Individual()
  10. {
  11. }
  12. #endregion Constructor
  13. #region Properties
  14. #endregion Properties
  15. }
  16. }