Select Git revision
WorldCursor.cs
CommandAttribute.cs 370 B
using System;
namespace MasterDevs.ChromeDevTools
{
[AttributeUsage(AttributeTargets.Class, Inherited = false)]
public class CommandAttribute : Attribute, IMethodNameAttribute
{
public CommandAttribute(string methodName)
{
this.MethodName = methodName;
}
public string MethodName { get; private set; }
}
}