PIbd-23_Elatomtsev_L.K._Con.../Confectionery/ConfectioneryContracts/SearchModels/OrderSearchModel.cs
2024-05-05 03:45:20 +04:00

11 lines
273 B
C#

namespace ConfectioneryContracts.SearchModels
{
public class OrderSearchModel
{
public int? Id { get; set; }
public int? ClientId { get; set; }
public DateTime? DateFrom { get; set; }
public DateTime? DateTo { get; set; }
}
}