phronCare/Domain/Generics/StockItemParsedSearchParams.cs

14 lines
405 B
C#
Raw Normal View History

2025-08-18 00:47:37 -03:00
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;
}
}