Files
mixtape/zero.Api/ApiParameterTransformer.cs
T
2021-11-30 14:32:10 +01:00

11 lines
247 B
C#

using Microsoft.AspNetCore.Routing;
namespace zero.Api;
public class ApiParameterTransformer : IOutboundParameterTransformer
{
public string TransformOutbound(object value)
{
return value == null ? null : Safenames.Alias(value);
}
}