2026-02-20 17:35:38 +01:00
|
|
|
namespace IdentityShroud.Api;
|
2026-02-08 18:00:24 +01:00
|
|
|
|
|
|
|
|
public static class EndpointRouteBuilderExtensions
|
|
|
|
|
{
|
|
|
|
|
public static RouteHandlerBuilder Validate<TDto>(this RouteHandlerBuilder builder) where TDto : class
|
|
|
|
|
=> builder.AddEndpointFilter<ValidateFilter<TDto>>();
|
|
|
|
|
}
|