7 lines
268 B
C#
7 lines
268 B
C#
|
|
namespace IdentityShroud.Api.Validation;
|
||
|
|
|
||
|
|
public static class EndpointRouteBuilderExtensions
|
||
|
|
{
|
||
|
|
public static RouteHandlerBuilder Validate<TDto>(this RouteHandlerBuilder builder) where TDto : class
|
||
|
|
=> builder.AddEndpointFilter<ValidateFilter<TDto>>();
|
||
|
|
}
|