API
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

Individual.cs 514B

123456789101112131415161718192021
  1. using System.Collections.Generic;
  2. using System.ComponentModel.DataAnnotations;
  3. using System.ComponentModel.DataAnnotations.Schema;
  4. using UnivateProperties_API.Model.Properties;
  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 virtual ICollection<Property> Properties { get; set; }
  16. #endregion Properties
  17. }
  18. }