IJsonExtensionObject
The base JSON interface with extension data.
using System.Collections.Generic;
using System.Runtime.CompilerServices;
namespace NJsonSchema
{
public interface IJsonExtensionObject
{
[System.Runtime.CompilerServices.Nullable(new byte[] {
2,
1,
2
})]
IDictionary<string, object> ExtensionData {
[return: System.Runtime.CompilerServices.Nullable(new byte[] {
2,
1,
2
})]
get;
[param: System.Runtime.CompilerServices.Nullable(new byte[] {
2,
1,
2
})]
set;
}
}
}