Skip to content

Instantly share code, notes, and snippets.

@angelovstanton
Created October 2, 2016 16:27
Show Gist options
  • Save angelovstanton/7b6e8a157f241d3cfe0ea7742d11608d to your computer and use it in GitHub Desktop.
Save angelovstanton/7b6e8a157f241d3cfe0ea7742d11608d to your computer and use it in GitHub Desktop.
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Method,
Inherited = true, AllowMultiple = false)]
public class ExecutionEngineAttribute : Attribute
{
public ExecutionEngineAttribute(Browsers browser)
{
this.Browser = browser;
}
public Browsers Browser { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment