PIbd-23-Radaev-A.V.-GiftShop/GiftShop/GiftShopContracts/SearchModels/OrderSearchModel.cs

14 lines
271 B
C#
Raw Normal View History

2024-02-06 12:37:25 +04:00
namespace GiftShopContracts.SearchModels
{
public class OrderSearchModel
{
public int? Id { get; set; }
2024-04-07 10:17:23 +04:00
2024-04-09 17:02:29 +04:00
public int? ClientId { get; set; }
2024-04-07 10:17:23 +04:00
public DateTime? DateFrom { get; set; }
public DateTime? DateTo { get; set; }
2024-02-06 12:37:25 +04:00
}
}