14 lines
196 B
C#
14 lines
196 B
C#
namespace com.itac.mes.simm
|
|
{
|
|
/// <summary>
|
|
/// possible values for the configuration settings
|
|
/// </summary>
|
|
public enum ConfigCode
|
|
|
|
{
|
|
OFF = 0,
|
|
MES = 1,
|
|
SIMM = 2
|
|
}
|
|
|
|
} |