mirror of
https://github.com/tonytins/tomas.git
synced 2025-05-05 22:24:50 -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; }
|
|
}
|
|
}
|