phronCare/Domain/Generics/CustomerSearchParams.cs
Leandro Hernan Rojas d5722495ae
All checks were successful
CI/CD Pipeline / Build and Deploy with Docker Compose (push) Successful in 5m16s
Add Update API UI Customers CRUD
2025-04-14 17:50:25 -03:00

10 lines
229 B
C#

namespace Domain.Generics
{
public class CustomerSearchParams : PagedRequest
{
public string? Name { get; set; }
public string? Email { get; set; }
public string? Document { get; set; }
}
}