blob: 3b3843f2921f76bb85b5e06604ce743a5d824b5a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
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; }
}
}
|