using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Tango.Integration.Operation { /// /// Represents a job number of units duplication method. /// public enum JobUnitsMethods { /// /// The job ticket will be duplicated before sending to the embedded device. /// Operator, /// /// The job will be duplicated on the embedded device, /// Device, } }