mirror of
https://github.com/chylex/TweetDuck.git
synced 2024-11-25 05:42:47 +01:00
8 lines
175 B
C#
8 lines
175 B
C#
using TweetLib.Browser.Contexts;
|
|
|
|
namespace TweetLib.Browser.Interfaces {
|
|
public interface IContextMenuHandler {
|
|
void Show(IContextMenuBuilder menu, Context context);
|
|
}
|
|
}
|