Files
Torch/Torch/Commands/ChatCommandAttribute.cs
2016-12-17 01:59:03 -08:00

13 lines
238 B
C#

using System;
namespace Torch.Commands
{
public class ChatCommandAttribute : Attribute
{
public string Name { get; }
public ChatCommandAttribute(string name)
{
Name = name;
}
}
}