2021-07-22 16:12:27 -05:00
|
|
|
using System;
|
|
|
|
using Props.Shop.Framework;
|
|
|
|
|
|
|
|
namespace Props.Models.Search
|
|
|
|
{
|
|
|
|
public class ProductListingInfo
|
|
|
|
{
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
2021-08-05 01:22:19 -05:00
|
|
|
public string ShopName { get; set; }
|
2021-07-24 02:35:44 -05:00
|
|
|
|
2021-07-22 16:12:27 -05:00
|
|
|
public uint Hits { get; set; }
|
|
|
|
|
2021-08-09 13:32:16 -05:00
|
|
|
public ProductListing ProductListing { get; set; }
|
2021-07-22 16:12:27 -05:00
|
|
|
|
2021-08-09 13:32:16 -05:00
|
|
|
public string ProductListingIdentifier { get; set; }
|
2021-07-22 16:12:27 -05:00
|
|
|
}
|
|
|
|
}
|