1
0
Fork 0
DiademCalculator/Attributes/CommandAttribute.cs

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;
}
}
}