All checks were successful
CI/CD Pipeline / Build and Deploy with Docker Compose (push) Successful in 4m55s
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;
|
|
}
|
|
}
|