PIAPS_CW/Contracts/SearchModels/SellSearchModel.cs

17 lines
348 B
C#
Raw Normal View History

2024-06-11 12:18:10 +04:00
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; }
}
}