Files
isn/src/isnd/PreserveReferencesHandlingDictionaryKeyPolicy.cs
2023-04-17 01:20:42 +01:00

12 lines
271 B
C#

using System.Text.Json;
namespace isnd
{
internal class PreserveReferencesHandlingDictionaryKeyPolicy : JsonNamingPolicy
{
public override string ConvertName(string name)
{
throw new System.NotImplementedException();
}
}
}