mirror of
https://github.com/chylex/TweetDuck.git
synced 2025-06-02 14:34:11 +02: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);
|
|
}
|
|
}
|