This commit is contained in:
Rene Schwarz
2021-08-06 12:35:46 +02:00
parent 2240d30570
commit 4828f95ebb
59 changed files with 476 additions and 829 deletions

View File

@@ -3,6 +3,9 @@ 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; }
}