8 lines
168 B
C#
8 lines
168 B
C#
namespace Dashboard.Events
|
|
{
|
|
public class WindowCloseEvent() : UiEventArgs(UiEventType.WindowClose)
|
|
{
|
|
public bool Cancel { get; set; } = false;
|
|
}
|
|
}
|