API
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

PropertySearch.cs 762B

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