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