2024-05-31 19:49:56 +04:00
|
|
|
|
using ElectronicsShopDataModels.Enums;
|
|
|
|
|
using ElectronicsShopDataModels.Models;
|
|
|
|
|
using System;
|
2024-05-30 16:07:54 +04:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace ElectronicsShopContracts.BindingModels
|
|
|
|
|
{
|
|
|
|
|
public class ReportBindingModel
|
|
|
|
|
{
|
2024-07-23 20:29:10 +04:00
|
|
|
|
public string ClientEmail { get; set; } = string.Empty;
|
|
|
|
|
public DateTime DateFrom { get; set; }
|
|
|
|
|
public DateTime DateTo { get; set; }
|
2024-07-27 12:48:31 +04:00
|
|
|
|
public int ClientID { get; set; }
|
2024-05-31 19:49:56 +04:00
|
|
|
|
}
|
2024-05-30 16:07:54 +04:00
|
|
|
|
}
|