blob: 0f5e39872a05806e46a4085d996311191de1a572 (
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
27
28
29
30
31
32
33
34
35
36
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.BL.Entities;
namespace Tango.PPC.Jobs.NavigationObjects
{
/// <summary>
/// Represents a job navigation object.
/// </summary>
public class JobNavigationObject
{
/// <summary>
/// Gets or sets the job.
/// </summary>
public Job Job { get; set; }
/// <summary>
/// Gets or sets the navigation intent.
/// </summary>
public JobNavigationIntent Intent { get; set; }
}
/// <summary>
/// Represents different job navigation intents.
/// </summary>
public enum JobNavigationIntent
{
Default,
NewJob,
SampleDye,
FineTuning,
}
}
|