46 lines
890 B
C#
46 lines
890 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Egw.Window.Data
|
|
{
|
|
public class Enums
|
|
{
|
|
/// <summary>
|
|
/// Modo chiamata Engine
|
|
/// </summary>
|
|
public enum QuestionModes
|
|
{
|
|
NULL = 0,
|
|
PREVIEW,
|
|
BOM,
|
|
HARDWAREMODELLIST
|
|
}
|
|
|
|
/// <summary>
|
|
/// SubMode di chiamata Engine
|
|
/// </summary>
|
|
public enum QuestionSubModes
|
|
{
|
|
NULL = 0,
|
|
LIST = 1,
|
|
CALCHARDWARE = 2,
|
|
HARDWAREOPTIONS = 3
|
|
}
|
|
|
|
|
|
/// <summary>
|
|
/// Elenco produttori Hardware
|
|
/// </summary>
|
|
public enum HardwareManufacturers
|
|
{
|
|
NULL = 0,
|
|
AGB = 1,
|
|
MAICO = 2,
|
|
ROTO = 3
|
|
}
|
|
}
|
|
}
|