mirror of
https://github.com/chylex/TweetDuck.git
synced 2024-11-21 20:42:46 +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);
|
|
}
|
|
}
|