mirror of
https://github.com/chylex/TweetDuck.git
synced 2024-11-23 17:42:46 +01:00
10 lines
240 B
C#
10 lines
240 B
C#
using System;
|
|
|
|
namespace TweetLib.Browser.Interfaces {
|
|
public interface IContextMenuBuilder {
|
|
void AddAction(string name, Action action);
|
|
void AddActionWithCheck(string name, bool isChecked, Action action);
|
|
void AddSeparator();
|
|
}
|
|
}
|