10 lines
302 B
C#
10 lines
302 B
C#
namespace EonaCat.DoxaApi.Attributes
|
|
{
|
|
[AttributeUsage(AttributeTargets.Method)]
|
|
public sealed class DoxaApiDescriptionAttribute : Attribute
|
|
{
|
|
public string Description { get; }
|
|
public DoxaApiDescriptionAttribute(string description) => Description = description;
|
|
}
|
|
}
|