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

15 lines
276 B
C#

using System;
namespace TBF.UiBridge
{
public class StateChangedEventArgs : EventArgs
{
public string StateChangedMsg;
public StateChangedEventArgs(string stateChangedMsg)
{
StateChangedMsg = stateChangedMsg;
}
}
}