mirror of
https://github.com/ckaczor/FloatingStatusWindow.git
synced 2026-01-13 17:22:47 -05:00
13 lines
216 B
C#
13 lines
216 B
C#
using System.Drawing;
|
|
|
|
namespace FloatingStatusWindowLibrary
|
|
{
|
|
public interface IWindowSource
|
|
{
|
|
string Name { get; }
|
|
string WindowSettings { get; set; }
|
|
|
|
Icon Icon { get; }
|
|
}
|
|
}
|