123456789101112131415161718 |
- namespace UnivateProperties_API.Containers.Property
- {
- public class PropertyList
- {
- #region Properties
- public string Name { get; set; }
- public int Id { get; set; }
- public string Size { get; set; }
- public string Price { get; set; }
- public string UsageType { get; set; }
- public string Type { get; set; }
- public string SaleType { get; set; }
- public string Publish { get; set; }
- public string Status { get; set; }
- public string CarouselDescription { get; set; }
- #endregion
- }
- }
|