1
0
DiademCalculator/Attributes/CommandAttribute.cs
mudcrab2142 c06c291833 init
2022-03-30 02:22:32 +03:00

15 lines
299 B
C#

using System;
namespace DiademCalculator.Attributes
{
[AttributeUsage(AttributeTargets.Method)]
public class CommandAttribute : Attribute
{
public string Command { get; }
public CommandAttribute(string command)
{
Command = command;
}
}
}