15 lines
276 B
C#
15 lines
276 B
C#
using System;
|
|
|
|
namespace TBF.UiBridge
|
|
{
|
|
public class StateChangedEventArgs : EventArgs
|
|
{
|
|
public string StateChangedMsg;
|
|
|
|
public StateChangedEventArgs(string stateChangedMsg)
|
|
{
|
|
StateChangedMsg = stateChangedMsg;
|
|
}
|
|
}
|
|
}
|