StateChangeEventArgs.cs
16 lines
| 408 B
| text/x-csharp
|
CSharpLexer
cin
|
r205 | using System; | ||
namespace Implab.Components | ||||
{ | ||||
public class StateChangeEventArgs { | ||||
/// <summary> | ||||
/// The error information if any | ||||
/// </summary> | ||||
public Exception LastError { get; set; } | ||||
/// <summary> | ||||
/// The state of the service corresponding to this event | ||||
/// </summary> | ||||
public ExecutionState State { get; set; } | ||||
} | ||||
} | ||||