aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/PPC/Tango.PPC.Common/Connection/MachineOperatorChangedEventArgs.cs
blob: 15cb66e057a0a5fc1b2b55cb0bc4ba7e4f30f862 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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
{
    public class MachineOperatorChangedEventArgs : EventArgs
    {
        public IMachineOperator OldMachineOperator { get; private set; }
        public IMachineOperator MachineOperator { get; private set; }

        public MachineOperatorChangedEventArgs(IMachineOperator oldOperator, IMachineOperator newOperator)
        {
            OldMachineOperator = oldOperator;
            MachineOperator = newOperator;
        }
    }
}