Skip to content

Commit

Permalink
Revert "Delete JsonCamelCaseEnumConverter.cs"
Browse files Browse the repository at this point in the history
This reverts commit f1474ac.
  • Loading branch information
7702244 committed Jun 25, 2024
1 parent f1474ac commit 2182df8
Showing 1 changed file with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
using System.Text.Json;
using System.Text.Json.Serialization;

namespace MAOToolkit.Utilities.JsonConverters
{
public class JsonCamelCaseEnumConverter : JsonStringEnumConverter
{
public JsonCamelCaseEnumConverter() : base(JsonNamingPolicy.CamelCase) { }
}
}

0 comments on commit 2182df8

Please sign in to comment.