Files
Server-Dashboard/Server Dashboard/Interfaces/IWindowHelper.cs

13 lines
274 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>
internal interface IWindowHelper {
Action Close { get; set; }
}
}