Files
FloatingStatusWindow/Library/IWindowSource.cs
2018-02-06 21:54:26 -05:00

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();
}
}