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

PropertyList.cs 650B

123456789101112131415161718192021
  1. using System;
  2. namespace UnivateProperties_API.Containers.Property
  3. {
  4. public class PropertyList
  5. {
  6. #region Properties
  7. public string Name { get; set; }
  8. public int Id { get; set; }
  9. public DateTime DateAvailable { get; set; }
  10. public string Size { get; set; }
  11. public string Price { get; set; }
  12. public string UsageType { get; set; }
  13. public string Type { get; set; }
  14. public string SaleType { get; set; }
  15. public string Publish { get; set; }
  16. public string Status { get; set; }
  17. public string CarouselDescription { get; set; }
  18. #endregion
  19. }
  20. }