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
{
///
/// Represents a job navigation object.
///
public class JobNavigationObject
{
///
/// Gets or sets the job.
///
public Job Job { get; set; }
///
/// Gets or sets the navigation intent.
///
public JobNavigationIntent Intent { get; set; }
}
///
/// Represents different job navigation intents.
///
public enum JobNavigationIntent
{
Default,
NewJob,
SampleDye,
FineTuning,
}
}