using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WebWindow.Base
{
public class Enums
{
///
/// Modo chiamata Engine
///
public enum EngineQueryType
{
None = 0,
Preview,
Bom,
HardwareModelList
}
///
/// SubMode di chiamata Engine
///
public enum EngineSubMode
{
NULL = 0,
LIST = 1,
CALCSASH = 2,
SASHOPTIONS = 3
}
///
/// Elenco produttori Hardware
///
public enum EngineHwManufacturers
{
NULL = 0,
AGB = 1,
MAICO = 2,
ROTO = 3
}
}
}