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 { /// /// Notifies about a job being selected from the job list. /// public class JobSelectedMessage { /// /// Gets or sets the job. /// public Job Job { get; set; } /// /// Gets or sets the db context. /// public ObservablesContext Context { get; set; } } }