mirror of
https://github.com/ckaczor/FloatingStatusWindow.git
synced 2026-01-14 01:25:36 -05:00
18 lines
345 B
C#
18 lines
345 B
C#
using System.Drawing;
|
|
|
|
namespace FloatingStatusWindowLibrary
|
|
{
|
|
public interface IWindowSource
|
|
{
|
|
string Name { get; }
|
|
string WindowSettings { get; set; }
|
|
Icon Icon { get; }
|
|
|
|
bool HasSettingsMenu { get; }
|
|
bool HasRefreshMenu { get; }
|
|
|
|
void ShowSettings();
|
|
void Refresh();
|
|
}
|
|
}
|