Created
March 24, 2016 08:30
-
-
Save sudipto80/40a723e986feb84cac3b to your computer and use it in GitHub Desktop.
PlugInClass
This file contains hidden or 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
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