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; } }