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

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