Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
123456789101112131415161718192021 |
- using System.Collections.Generic;
- using System.ComponentModel.DataAnnotations;
- using System.ComponentModel.DataAnnotations.Schema;
- using UnivateProperties_API.Model.Properties;
-
- namespace UnivateProperties_API.Model.Users
- {
- public class Individual : Person
- {
- #region Constructor
- public Individual()
- {
-
- }
- #endregion Constructor
-
- #region Properties
- public virtual ICollection<Property> Properties { get; set; }
- #endregion Properties
- }
- }
|