12 lines
271 B
C#
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();
|
|
}
|
|
}
|
|
} |