mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-04 13:06:50 +00:00
17 lines
No EOL
574 B
C#
17 lines
No EOL
574 B
C#
using System;
|
|
using System.Text.Json;
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace Myriad.Serialization
|
|
{
|
|
public class JsonSnakeCaseStringEnumConverter: JsonConverterFactory
|
|
{
|
|
private readonly JsonStringEnumConverter _inner = new(new JsonSnakeCaseNamingPolicy());
|
|
|
|
public override bool CanConvert(Type typeToConvert) =>
|
|
_inner.CanConvert(typeToConvert);
|
|
|
|
public override JsonConverter? CreateConverter(Type typeToConvert, JsonSerializerOptions options) =>
|
|
_inner.CreateConverter(typeToConvert, options);
|
|
}
|
|
} |