PIAPS_CW/Contracts/SearchModels/SupplySearchModel.cs

17 lines
403 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Contracts.SearchModels
{
public class SupplySearchModel
{
public Guid? Id { get; set; }
public List<ProductSearchModel>? Products { get; set; }
public DateTime? DateStart { get; set; }
public DateTime? DateEnd { get; set; }
}
}