18 lines
348 B
C#
18 lines
348 B
C#
|
using System;
|
||
|
using Props.Shop.Framework;
|
||
|
|
||
|
namespace Props.Models.Search
|
||
|
{
|
||
|
public class ProductListingInfo
|
||
|
{
|
||
|
public int Id { get; set; }
|
||
|
|
||
|
public uint Hits { get; set; }
|
||
|
|
||
|
public DateTime LastUpdated { get; set; }
|
||
|
|
||
|
public string ProductUrl { get; set; }
|
||
|
|
||
|
public string ProductName { get; set; }
|
||
|
}
|
||
|
}
|