17 lines
387 B
C#
17 lines
387 B
C#
using ElectronicsShopDataModels.Enums;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ElectronicsShopContracts.SearchModels
|
|
{
|
|
public class OrderSearchModel
|
|
{
|
|
public int? ID { get; set; }
|
|
public DateTime? DateFrom { get; set; }
|
|
public DateTime? DateTo { get; set;}
|
|
}
|
|
}
|