using System; using Props.Shop.Framework; namespace Props.Models.Search { public class ProductListingInfo { public int Id { get; set; } public string ShopName { get; set; } public uint Hits { get; set; } public DateTime LastUpdated { get; set; } public string ProductUrl { get; set; } public string ProductName { get; set; } } }