All checks were successful
CI/CD Pipeline / Build and Deploy with Docker Compose (push) Successful in 5m31s
10 lines
235 B
C#
10 lines
235 B
C#
namespace Domain.Generics
|
|
{
|
|
public class ProfessionalSearchParams : PagedRequest
|
|
{
|
|
public string? Fullname { get; set; }
|
|
public string? Document{ get; set; }
|
|
public string? Type { get; set; }
|
|
}
|
|
}
|