12 lines
323 B
C#
12 lines
323 B
C#
|
|
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;
|
|||
|
|
}
|
|||
|
|
}
|