tbf/TestBenchFramework/UiBridge/ButtonsEtcEventArgs.cs
2014-07-28 09:56:40 +02:00

18 lines
309 B
C#

using System;
namespace TBF.UiBridge
{
/// <summary>
/// Argument of UiBridgeEventHandler.
/// </summary>
public class ButtonsEtcEventArgs : EventArgs
{
public ButtonsEtc Flags; /// Flags to be passed to the UI.
public ButtonsEtcEventArgs(ButtonsEtc flags)
{
this.Flags = flags;
}
}
}