Skip to content

Instantly share code, notes, and snippets.

@Trivaxy
Created June 23, 2019 21:46
Show Gist options
  • Save Trivaxy/bd37f9d1547dc6912942103dd00b2d8e to your computer and use it in GitHub Desktop.
Save Trivaxy/bd37f9d1547dc6912942103dd00b2d8e to your computer and use it in GitHub Desktop.
shit
[AttributeUsage(AttributeTargets.Method, AllowMultiple = false)]
class RunAttribute : Attribute
{
public Type Type
{
get;
private set;
}
public RunOption RunOption
{
get;
private set;
}
public RunAttribute(Type type, RunOption runOption)
{
Type = type;
RunOption = runOption;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment