namespace EonaCat.DoxaApi.Attributes { [AttributeUsage(AttributeTargets.Method)] public sealed class DoxaApiExampleAttribute : Attribute { public string Json { get; } public DoxaApiExampleAttribute(string json) => Json = json; } }