using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.BL;
using Tango.BL.Entities;
namespace Tango.PPC.Jobs.Messages
{
/// <summary>
/// Notifies about a job being selected from the job list.
/// </summary>
public class JobSelectedMessage
{
/// <summary>
/// Gets or sets the job.
/// </summary>
public Job Job { get; set; }
/// <summary>
/// Gets or sets the db context.
/// </summary>
public ObservablesContext Context { get; set; }
}
}