mirror of
https://github.com/RPCS3/discord-bot.git
synced 2024-11-23 10:19:39 +00:00
92751ba6e9
some formatting might be fucked
8 lines
205 B
C#
8 lines
205 B
C#
using System.Text.Json;
|
|
|
|
namespace CompatApiClient;
|
|
|
|
public sealed class SnakeCaseNamingPolicy: JsonNamingPolicy
|
|
{
|
|
public override string ConvertName(string name) => NamingStyles.Underscore(name);
|
|
} |