view Implab/Components/StateChangeEventArgs.cs @ 206:86b61d53b7db v2

Слияние
author cin
date Tue, 25 Oct 2016 17:40:45 +0300
parents 8200ab154c8a
children 558f34b2fb50
line wrap: on
line source

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; }
    }
}