Skip to content

Instantly share code, notes, and snippets.

@sudipto80
Created March 24, 2016 08:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sudipto80/40a723e986feb84cac3b to your computer and use it in GitHub Desktop.
Save sudipto80/40a723e986feb84cac3b to your computer and use it in GitHub Desktop.
PlugInClass
class PlugIn
{
public string ID { get; set; }
public string Description { get; set; }
public Action DoThis { get; set;}
public PlugIn(string id, string des, Action act)
{
ID = id;
Description = des;
DoThis = act;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment