Files
zszq-trs/Framework/YLErp.Core/Events/EventDescriptionAttribute.cs
T
2024-05-09 14:06:26 +08:00

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