PIbd-21_Bakalskaya_E.D._Sus.../SushiBarContracts/BindingModel/ReportBindingModel.cs

14 lines
369 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using SushiBarDataModels.Enums;
namespace SushiBarContracts.BindingModel
{
public class ReportBindingModel
{
public string FileName { get; set; } = string.Empty;
public DateTime? DateFrom { get; set; }
public DateTime? DateTo { get; set; }
public OrderStatus Status { get; set; } = OrderStatus.Неизвестен;
}
}