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