Skip to content

Instantly share code, notes, and snippets.

@kb10uy
Created April 2, 2014 14:49
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 kb10uy/9935717 to your computer and use it in GitHub Desktop.
Save kb10uy/9935717 to your computer and use it in GitHub Desktop.
public interface IKbtterCallable : IKbtterHasName
{
IEnumerable<KbtterPluginMenu> GetMenuList();
}
public class KbtterPluginMenu
{
public string MenuTitle { get; set; }
public Action MenuAction { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment