PIbd-23_Elatomtsev_L.K._Con.../Confectionery/ConfectioneryContracts/SearchModels/OrderSearchModel.cs

14 lines
407 B
C#
Raw Normal View History

2024-05-08 15:04:44 +04:00
using ConfectioneryDataModels.Enums;
namespace ConfectioneryContracts.SearchModels
2024-03-13 14:54:56 +04:00
{
public class OrderSearchModel
{
public int? Id { get; set; }
2024-05-05 03:45:20 +04:00
public int? ClientId { get; set; }
2024-05-08 15:04:44 +04:00
public int? ImplementerId { get; set; }
public OrderStatus? Status { get; set; }
2024-04-10 15:15:05 +04:00
public DateTime? DateFrom { get; set; }
public DateTime? DateTo { get; set; }
2024-03-13 14:54:56 +04:00
}
}