sharp-chat/SharpChatCommon/Events/ChatEventDataForAttribute.cs

13 lines
347 B
C#
Raw Normal View History

2024-05-24 03:44:20 +00:00
using System;
namespace SharpChat.Events {
[AttributeUsage(AttributeTargets.Class, AllowMultiple = false, Inherited = false)]
public class ChatEventDataForAttribute : Attribute {
public string EventName { get; }
public ChatEventDataForAttribute(string eventName) {
EventName = eventName;
}
}
}