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