PIbd-21_Medvedkov_Coursach/ComputerShopContracts/SearchModels/BatchSearchModel.cs
2024-05-01 04:42:57 +04:00

17 lines
368 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ComputerShopContracts.SearchModels
{
public class BatchSearchModel
{
public int? Id { get; set; }
public int ProductId { get; set; }
public DateTime? DateFrom { get; set; }
public DateTime? DateTo { get; set; }
}
}