17 lines
403 B
C#
17 lines
403 B
C#
|
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; }
|
|||
|
}
|
|||
|
}
|