using System.Collections.Generic; namespace UnivateProperties_API.Model.Timeshare { public class UnitConfiguration : BaseEntity { #region Properties public string Code { get; set; } public int Bedrooms { get; set; } public int Adults { get; set; } public int Children { get; set; } #endregion Properties #region Navigation public virtual ICollection Types { get; set; } #endregion Navigation } }