21 lines
591 B
C#
21 lines
591 B
C#
using ElectronicsShopDataModels.Enums;
|
||
using System;
|
||
using System.Collections.Generic;
|
||
using System.Linq;
|
||
using System.Text;
|
||
using System.Threading.Tasks;
|
||
|
||
namespace ElectronicsShopContracts.SearchModels
|
||
{
|
||
public class ReportSearchModel
|
||
{
|
||
public int? ID { get; set; }
|
||
public int? ClientID { get; set; }
|
||
public string? ProductName { get; set; } = string.Empty;
|
||
public double? ProductPrice { get; set; }
|
||
public PaymeantOption Status { get; set; } = PaymeantOption.Неоплачено;
|
||
public DateTime? DateStart { get; set; }
|
||
public DateTime? DateFinish { get; set; }
|
||
}
|
||
}
|