PIAPS_CW/Contracts/SearchModels/SellSearchModel.cs
2024-06-11 12:18:10 +04:00

17 lines
348 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Contracts.SearchModels
{
public class SellSearchModel
{
public Guid? Id { get; set; }
public DateTime? DateFrom { get; set; }
public DateTime? DateTo { get; set; }
public Guid? SupplyDocId { get; set; }
}
}