props/Props/Models/Search/ProductListingInfo.cs
Harrison Deng 0b507b90a1 Added identifier and fetch time product listings; Added persistence to AdafruitShop.
Implemented in AdafruitShop.

AdafruitShop Product listing data now persisted.

AdafruitShop configuration now persisted.
2021-08-11 00:27:40 -05:00

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; }
}
}