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