phronCare/Domain/Generics/ProfessionalSearchParams.cs
Leandro Hernan Rojas f4d6bd9e28
All checks were successful
CI/CD Pipeline / Build and Deploy with Docker Compose (push) Successful in 5m31s
Add Professional y Specialty on API UI
2025-04-24 20:03:42 -03:00

10 lines
235 B
C#

namespace Domain.Generics
{
public class ProfessionalSearchParams : PagedRequest
{
public string? Fullname { get; set; }
public string? Document{ get; set; }
public string? Type { get; set; }
}
}