| 1234567891011121314151617 | 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<UnitConfigurationType> Types { get; set; }
        #endregion Navigation
    }
}
 |