Harrison Deng
0b507b90a1
Implemented in AdafruitShop. AdafruitShop Product listing data now persisted. AdafruitShop configuration now persisted.
18 lines
368 B
C#
18 lines
368 B
C#
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 ProductListing ProductListing { get; set; }
|
|
|
|
public string ProductListingIdentifier { get; set; }
|
|
}
|
|
} |