16 lines
342 B
C#
Raw Normal View History

2023-04-30 02:34:19 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace GiftShopContracts.SearchModels
{
public class OrderSearchModel
{
public int? Id { get; set; }
2023-06-04 03:50:20 +04:00
public DateTime? DateFrom { get; set; }
public DateTime? DateTo { get; set; }
2023-04-30 02:34:19 +04:00
}
}