21 lines
369 B
C#
21 lines
369 B
C#
///
|
|
/// Copyright (c) 2013-2015 Sensus Metering Systems
|
|
///
|
|
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;
|
|
}
|
|
}
|
|
}
|