Created
October 2, 2016 16:27
-
-
Save angelovstanton/7b6e8a157f241d3cfe0ea7742d11608d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[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