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