All checks were successful
CI/CD Pipeline / Build and Deploy with Docker Compose (push) Successful in 6m16s
9 lines
229 B
C#
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; }
|
|
}
|
|
} |