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,
}
}