sharp-chat/SharpChat.Common/Events/EventAttribute.cs
2022-08-30 17:05:29 +02:00

13 lines
312 B
C#

using System;
namespace SharpChat.Events {
[AttributeUsage(AttributeTargets.Class)]
public class EventAttribute : Attribute {
public string Type { get; }
public EventAttribute(string type) {
Type = type ?? throw new ArgumentNullException(nameof(type));
}
}
}