props/Props/Models/Search/ProductListingInfo.cs

20 lines
396 B
C#
Raw Normal View History

using System;
using Props.Shop.Framework;
namespace Props.Models.Search
{
public class ProductListingInfo
{
public int Id { get; set; }
public string OriginName { get; set; }
public uint Hits { get; set; }
public DateTime LastUpdated { get; set; }
public string ProductUrl { get; set; }
public string ProductName { get; set; }
}
}