mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-12 02:08:27 -04:00
12 lines
283 B
C#
12 lines
283 B
C#
#nullable disable
|
|
using System.Text.Json;
|
|
|
|
namespace NadekoBot.Modules.Searches.Common;
|
|
|
|
public class LowerCaseNamingPolicy : JsonNamingPolicy
|
|
{
|
|
public static LowerCaseNamingPolicy Default = new();
|
|
|
|
public override string ConvertName(string name)
|
|
=> name.ToLower();
|
|
} |