mirror of
https://github.com/tonytins/tomas.git
synced 2025-04-30 03:31:39 -04:00
11 lines
251 B
C#
11 lines
251 B
C#
using System;
|
|
|
|
namespace Tomas.Kernel
|
|
{
|
|
public delegate void TerminalCancelEventHandler(object sender, TerminalCancelEventArgs e);
|
|
|
|
public sealed class TerminalCancelEventArgs : EventArgs
|
|
{
|
|
public bool Cancel { get; set; }
|
|
}
|
|
}
|