14 lines
405 B
C#
14 lines
405 B
C#
|
|
namespace Domain.Generics
|
|||
|
|
{
|
|||
|
|
public class StockItemParsedSearchParams
|
|||
|
|
{
|
|||
|
|
public string? Gtin { get; set; }
|
|||
|
|
public string? Batch { get; set; }
|
|||
|
|
public DateOnly? Expiration { get; set; }
|
|||
|
|
public string? Serial { get; set; }
|
|||
|
|
public int? LocationId { get; set; }
|
|||
|
|
public int Page { get; set; } = 1;
|
|||
|
|
public int PageSize { get; set; } = 20;
|
|||
|
|
}
|
|||
|
|
}
|