2024-05-27 19:58:48 +04:00
|
|
|
|
namespace ComputerHardwareStoreContracts.BindingModels
|
|
|
|
|
{
|
|
|
|
|
public class ReportBindingModel
|
|
|
|
|
{
|
|
|
|
|
public string FileName { get; set; } = string.Empty;
|
|
|
|
|
public DateTime? DateFrom { get; set; }
|
|
|
|
|
public DateTime? DateTo { get; set; }
|
2024-05-30 07:44:40 +04:00
|
|
|
|
public int UserId { get; set; }
|
|
|
|
|
public string UserEmail { get; set; } = string.Empty;
|
2024-05-27 19:58:48 +04:00
|
|
|
|
}
|
|
|
|
|
}
|