| 1234567891011121314151617181920 | using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace UnivateProperties_API.Model.Users
{
    public class Individual : Person
    {
        #region Constructor
        public Individual()
        {
        }
        #endregion Constructor
        #region Properties
        
        #endregion Properties
    }
}
 |