using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tango.Integration.Operation
{
///
/// Represents a machine operator liquid quantity calculation mode which will determine the amount of liquid spent when job has stopped.
///
public enum JobLiquidQuantityCalculationMode
{
///
/// Calculates the liquid quantities using the before and after job run.
///
MachineStatus,
///
/// Calculates the liquid quantities using the job details, stop position and an integral.
///
Integral
}
}