phronCare/Domain/Generics/StockItemSearchParams.cs

16 lines
478 B
C#
Raw Normal View History

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