API
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

UnitConfigurationDto.cs 394B

1234567891011121314
  1. using System.Collections.Generic;
  2. namespace UnivateProperties_API.Containers.Timeshare
  3. {
  4. public class UnitConfigurationDto
  5. {
  6. public int Id { get; set; }
  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. public List<string> Types { get; set; }
  12. }
  13. }