phronCare/Domain/Generics/InstitutionSearchParams.cs
Leandro Hernan Rojas 8623488221
All checks were successful
CI/CD Pipeline / Build and Deploy with Docker Compose (push) Successful in 5m24s
Update ADD Patients y Institutions Models in API
2025-04-20 19:58:17 -03:00

9 lines
229 B
C#

namespace Domain.Generics
{
public class InstitutionSearchParams :PagedRequest
{
public string? Name { get; set; }
public string? City { get; set; }
public string? Province { get; set; }
}
}