props/Props/Models/Search/ProductListingInfo.cs
Harrison Deng c94ea4a624 Added primitive search mechanism in backend.
Began implementing search mechanism for frontend.
2021-08-05 01:22:19 -05:00

20 lines
394 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 DateTime LastUpdated { get; set; }
public string ProductUrl { get; set; }
public string ProductName { get; set; }
}
}