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

PropertySearch.cs 653B

1234567891011121314151617181920
  1. using System.Collections.Generic;
  2. namespace UnivateProperties_API.Containers.Property
  3. {
  4. public class PropertySearch
  5. {
  6. #region Properties
  7. public string UserName { get; set; }
  8. public string Keyword { get; set; }
  9. public string SalesType { get; set; }
  10. public string PropertyUsageType { get; set; }
  11. public string PropertyType { get; set; }
  12. public string Province { get; set; }
  13. public string City { get; set; }
  14. public string Suburb { get; set; }
  15. public decimal MinPrice { get; set; }
  16. public decimal MaxPrice { get; set; }
  17. #endregion
  18. }
  19. }