Update directory layout

This commit is contained in:
2018-02-06 21:54:26 -05:00
parent ceea58b9bc
commit 38d692c9fc
19 changed files with 6 additions and 6 deletions

17
Library/IWindowSource.cs Normal file
View File

@@ -0,0 +1,17 @@
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();
}
}