2025-04-20 19:58:17 -03:00
|
|
|
|
namespace Domain.Generics
|
|
|
|
|
|
{
|
|
|
|
|
|
public class InstitutionSearchParams :PagedRequest
|
|
|
|
|
|
{
|
|
|
|
|
|
public string? Name { get; set; }
|
2025-04-21 19:41:26 -03:00
|
|
|
|
public string? Type { get; set; }
|
2025-04-20 19:58:17 -03:00
|
|
|
|
public string? Province { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|