tbf/TestBenchFramework/UiBridge/StateChangedEventArgs.cs

15 lines
276 B
C#
Raw Normal View History

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