namespace Atomx.Admin.Client.Models
{
public class ProductSearch : BaseSearch
{
///
/// 产品标题
///
public string Title { get; set; } = string.Empty;
///
/// 分类ID
///
public string CategoryId { get; set; } = string.Empty;
///
/// 产品状态
///
public string Status { get; set; } = string.Empty;
///
/// 开始时间
///
public DateTime?[] RangeTime { get; set; } = new DateTime?[] { null, null };
}
}