using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.BL.DTO;
using Tango.Core;
namespace Tango.PPC.Shared.Jobs
{
public class RemoteJobUpdateResponse
{
public JobDTO Job { get; set; }
public ProcessParametersTableDTO ProcessParameters { get; set; }
public RemoteJobProgress Progress { get; set; }
public RemoteJobUpdateResponse()
{
Progress = new RemoteJobProgress();
}
}
}