1
2
3
4
5
6
7
8
9
10
11
12
| using System.Collections.Generic;
| using DPumpHydr.WinFrmUI.WenSkin.Json.Utilities;
|
| namespace DPumpHydr.WinFrmUI.WenSkin.Json.Serialization
| {
| internal class DefaultContractResolverState
| {
| public Dictionary<ResolverContractKey, JsonContract> ContractCache;
|
| public PropertyNameTable NameTable = new PropertyNameTable();
| }
| }
|
|