JsonSchemaExtensionDataAttribute
Adds an extension data property to a class or property.
using System;
using System.Runtime.CompilerServices;
namespace NJsonSchema.Annotations
{
[AttributeUsage()]
public class JsonSchemaExtensionDataAttribute : Attribute
{
public string Property {
[CompilerGenerated]
get;
[CompilerGenerated]
private set;
}
public object Value {
[CompilerGenerated]
get;
[CompilerGenerated]
private set;
}
public JsonSchemaExtensionDataAttribute(string property, object value)
{
Property = property;
Value = value;
}
}
}