Skip to content

Instantly share code, notes, and snippets.

@maximgorbatyuk
Created March 4, 2021 09:45
Show Gist options
  • Save maximgorbatyuk/f8a86fa3e3da8b156326c3ff989ea077 to your computer and use it in GitHub Desktop.
Save maximgorbatyuk/f8a86fa3e3da8b156326c3ff989ea077 to your computer and use it in GitHub Desktop.
using System.Text.Json;
using Utils.Serialization;
namespace YourNamespace
{
public class SnakeCaseNamingPolicy : JsonNamingPolicy
{
public override string ConvertName(string name) => name.ToSnakeCase();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment