using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tango.BL.Enumerations
{
public enum JobSource
{
/// <summary>
/// The job was originated from an application that is working directly against the main db (Machine Studio etc.)
/// </summary>
Remote = 0,
/// <summary>
/// The job was originated from an application that is working against a private local db (PPC etc.).
/// </summary>
Local = 1,
}
}