API
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

UnitConfiguration.cs 507B

1234567891011121314151617
  1. using System.Collections.Generic;
  2. namespace UnivateProperties_API.Model.Timeshare
  3. {
  4. public class UnitConfiguration : BaseEntity
  5. {
  6. #region Properties
  7. public string Code { get; set; }
  8. public int Bedrooms { get; set; }
  9. public int Adults { get; set; }
  10. public int Children { get; set; }
  11. #endregion Properties
  12. #region Navigation
  13. public virtual ICollection<UnitConfigurationType> Types { get; set; }
  14. #endregion Navigation
  15. }
  16. }