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