9 lines
179 B
C#
9 lines
179 B
C#
namespace Dashboard.Windowing
|
|
{
|
|
public interface IForm : IEventListener, IDisposable
|
|
{
|
|
public IWindow Window { get; }
|
|
public string Title { get; }
|
|
}
|
|
}
|