mirror of
https://github.com/RPCS3/discord-bot.git
synced 2024-11-23 10:19:39 +00:00
92751ba6e9
some formatting might be fucked
7 lines
220 B
C#
7 lines
220 B
C#
namespace CompatApiClient.Formatters;
|
|
|
|
public static class SpecialJsonNamingPolicy
|
|
{
|
|
public static SnakeCaseNamingPolicy SnakeCase { get; } = new();
|
|
public static DashedNamingPolicy Dashed { get; } = new();
|
|
} |