mcdiscordbot/MinecraftDiscordBot/Models/MessageTypeAttribute.cs

8 lines
275 B
C#
Raw Normal View History

namespace MinecraftDiscordBot.Models;
[AttributeUsage(AttributeTargets.Class, Inherited = false, AllowMultiple = false)]
public sealed class MessageTypeAttribute : Attribute {
public MessageTypeAttribute(string type) => Name = type;
public string Name { get; }
}