phronCare/Domain/Generics/InstitutionSearchParams.cs

9 lines
229 B
C#
Raw Normal View History

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