mirror of
https://github.com/tonytins/tomas.git
synced 2026-04-08 07:43:31 -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; }
|
|
}
|
|
}
|