ISEbd-21_Agliullov.D.A._Con.../ConfectioneryContracts/SearchModels/OrderSearchModel.cs

12 lines
232 B
C#
Raw Normal View History

namespace ConfectioneryContracts.SearchModels
{
public class OrderSearchModel
{
public int? Id { get; set; }
2023-03-01 16:42:58 +04:00
public DateTime? DateFrom { get; set; }
public DateTime? DateTo { get; set; }
}
}