10 lines
266 B
C#
10 lines
266 B
C#
namespace EonaCat.DoxaApi.Attributes
|
|
{
|
|
[AttributeUsage(AttributeTargets.Method)]
|
|
public sealed class DoxaApiExampleAttribute : Attribute
|
|
{
|
|
public string Json { get; }
|
|
public DoxaApiExampleAttribute(string json) => Json = json;
|
|
}
|
|
}
|