using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Tango.Integration.Operation; namespace Tango.PPC.Common.Connection { /// /// Represents the event arguments. /// /// public class MachineOperatorChangedEventArgs : EventArgs { /// /// Gets the old machine operator. /// public IMachineOperator OldMachineOperator { get; private set; } /// /// Gets the new machine operator. /// public IMachineOperator MachineOperator { get; private set; } /// /// Initializes a new instance of the class. /// /// The old operator. /// The new operator. public MachineOperatorChangedEventArgs(IMachineOperator oldOperator, IMachineOperator newOperator) { OldMachineOperator = oldOperator; MachineOperator = newOperator; } } }