API
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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. }