15 lines
299 B
C#
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;
|
||
|
}
|
||
|
}
|
||
|
}
|