16 lines
478 B
C#
16 lines
478 B
C#
|
|
namespace Domain.Generics
|
|||
|
|
{
|
|||
|
|
public class StockItemSearchParams
|
|||
|
|
{
|
|||
|
|
public string? CodeOrText { get; set; }
|
|||
|
|
public string? Batch { get; set; }
|
|||
|
|
public int? LocationId { get; set; }
|
|||
|
|
public int? ProductType { get; set; }
|
|||
|
|
public int? TraceabilityType { get; set; }
|
|||
|
|
public bool? PlusProcess { get; set; }
|
|||
|
|
|
|||
|
|
// paginación
|
|||
|
|
public int Page { get; set; } = 1;
|
|||
|
|
public int PageSize { get; set; } = 20;
|
|||
|
|
}
|
|||
|
|
}
|