blob: 2327f5b66fb2aa6ed3e3864bb1a7b4b57674321d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
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,
}
}
|