| 12345678910111213141516171819202122 | using System;
namespace UnivateProperties_API.Containers.Property
{
    public class PropertyList
    {
        #region Properties
        public string Name { get; set; }
        public int Id { get; set; }
        public DateTime DateAvailable { get; set; }
        public string Size { get; set; }
        public decimal 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; }
        public bool IsPublished { get; set; }
        #endregion
    }
}
 |