10 lines
278 B
C#
10 lines
278 B
C#
namespace EonaCat.DoxaApi.Attributes
|
|
{
|
|
[AttributeUsage(AttributeTargets.Method)]
|
|
public sealed class DoxaApiSummaryAttribute : Attribute
|
|
{
|
|
public string Summary { get; }
|
|
public DoxaApiSummaryAttribute(string summary) => Summary = summary;
|
|
}
|
|
}
|