tbf/TestBenchFramework/UiBridge/StateChangedEventArgs.cs

18 lines
336 B
C#
Raw Normal View History

///
/// Copyright (c) 2013-2015 Sensus Metering Systems
///
using System;
namespace TBF.UiBridge
{
public class StateChangedEventArgs : EventArgs
{
public string StateChangedMsg;
public StateChangedEventArgs(string stateChangedMsg)
{
StateChangedMsg = stateChangedMsg;
}
}
}