phronCare/phronCare.UIBlazor/Services/Sales/CustomerSearchParams.cs

12 lines
323 B
C#
Raw Normal View History

2025-04-06 02:43:01 -03:00
namespace phronCare.UIBlazor.Services.Sales
{
public class CustomerSearchParams
{
public string? Name { get; set; }
public string? Email { get; set; }
public string? Document { get; set; }
public int Page { get; set; } = 1;
public int PageSize { get; set; } = 10;
}
}