mirror of
https://github.com/ckaczor/FloatingStatusWindow.git
synced 2026-01-14 01:25:36 -05:00
12 lines
215 B
C#
12 lines
215 B
C#
using System.Drawing;
|
|
|
|
namespace FloatingStatusWindowLibrary
|
|
{
|
|
public interface IWindowSource
|
|
{
|
|
string Name { get; }
|
|
string WindowSettings { get; set; }
|
|
Icon Icon { get; }
|
|
}
|
|
}
|