blob: 721dce6ed560ad264737de0c4c6083ee8a99a288 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
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; }
}
}
|