CourseWork_CompShop/ComputerShopProvider/ComputerShopContracts/SearchModels/SupplySearchModel.cs

17 lines
408 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ComputerShopContracts.SearchModels
{
public class SupplySearchModel
{
public int? Id { get; set; }
public DateTime? DateFrom { get; set; }
public DateTime? DateTo { get; set; }
2023-04-07 17:53:57 +04:00
public ComponentSearchModel? Component { get; set; }
}
}