blob: 7d9b36cba9c7d52e5044f069d21beb8b9c008e5f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
using System.ComponentModel;
namespace Tango.Integration.Observables
{
public enum IdsPackFormulas
{
/// <summary>
/// (Lubricant Formula)
/// </summary>
[Description("Lubricant Formula")]
Lubricant = 2,
/// <summary>
/// (Standard Color IDS Pack Formula)
/// </summary>
[Description("Standard Color IDS Pack Formula")]
StandardColor = 0,
/// <summary>
/// (Diluter Formula)
/// </summary>
[Description("Diluter Formula")]
TransparentLiquid = 1,
}
}
|