18 lines
336 B
C#
18 lines
336 B
C#
///
|
|
/// 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;
|
|
}
|
|
}
|
|
}
|