PIbd-23-Nasyrov-A.G.-Flower.../FlowerShopContracts/SearchModels/OrderSearchModel.cs

18 lines
388 B
C#
Raw Normal View History

2024-02-08 16:12:43 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FlowerShopContracts.SearchModels
{
public class OrderSearchModel
{
public int? Id { get; set; }
2024-03-26 18:10:51 +04:00
public DateTime? DateFrom { get; set; }
public DateTime? DateTo { get; set; }
2024-04-06 18:45:56 +04:00
public int? ClientId { get; set; }
2024-02-08 16:12:43 +04:00
}
}