14 lines
312 B
C#
14 lines
312 B
C#
namespace StopShopping.FileApi.Extensions;
|
|
|
|
public static class RouteGroupBuilderExtensions
|
|
{
|
|
public static RouteGroupBuilder WithInternalOnly(this RouteGroupBuilder routes)
|
|
{
|
|
routes.WithMetadata(new InternalOnlyMetadata());
|
|
|
|
return routes;
|
|
}
|
|
}
|
|
|
|
public class InternalOnlyMetadata { }
|