aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/FSE/Tango.FSE.Common/RemoteJob/RemoteJobProgressEventArgs.cs
blob: 039bcfd1573a7ec2bf85a86e6a18ab7a8f86fca0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.PPC.Shared.Jobs;

namespace Tango.FSE.Common.RemoteJob
{
    public class RemoteJobProgressEventArgs : EventArgs
    {
        public RemoteJobProgress Progress { get; set; }

        public RemoteJobProgressEventArgs()
        {
            Progress = new RemoteJobProgress();
        }
    }
}