Files
Server-Dashboard/Server Dashboard/Interfaces/IWindowHelper.cs
Rene Schwarz 4828f95ebb Issue #5
2021-08-06 12:35:46 +02:00

13 lines
265 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Server_Dashboard {
/// <summary>
/// Interface to help close a window with a button
/// </summary>
interface IWindowHelper {
Action Close { get; set; }
}
}