17 lines
408 B
C#
17 lines
408 B
C#
namespace YLErp.Events
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[AttributeUsage(AttributeTargets.Class)]
|
|
public class EventDescriptionAttribute : Attribute
|
|
{
|
|
public EventDescriptionAttribute(string description)
|
|
{
|
|
Description = description ?? throw new ArgumentNullException(nameof(description));
|
|
}
|
|
|
|
public string Description { get; }
|
|
}
|
|
}
|