phronCare/Domain/Generics/InstitutionSearchParams.cs
Leandro Hernan Rojas 319f7234c5
All checks were successful
CI/CD Pipeline / Build and Deploy with Docker Compose (push) Successful in 6m16s
Update ADD PhMap, Institutions and Patients
2025-04-21 19:41:26 -03:00

9 lines
229 B
C#

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