Initial commit

This commit is contained in:
2014-04-30 17:37:45 -04:00
commit d9173c4787
63 changed files with 14276 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
using System.Drawing;
namespace FloatingStatusWindowLibrary
{
public interface IWindowSource
{
string Name { get; }
string WindowSettings { get; set; }
Icon Icon { get; }
}
}