Files
2026-06-20 10:26:27 +02:00

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;
}
}