25 lines
797 B
C#
25 lines
797 B
C#
using Newtonsoft.Json.Converters;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Text.Json.Serialization;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace EgwCoreLib.Lux.Core.RestPayload
|
|
{
|
|
public class CalcRequestDTO
|
|
{
|
|
/// <summary>
|
|
/// Tipologia di richiesta da inviare al calcolo
|
|
/// </summary>
|
|
///[JsonConverter(typeof(StringEnumConverter))]
|
|
public EgwMultiEngineManager.Data.Constants.EXECENVIRONMENTS EnvType { get; set; } = EgwMultiEngineManager.Data.Constants.EXECENVIRONMENTS.NULL;
|
|
|
|
/// <summary>
|
|
/// Dizionario completo dei parametri da inviare
|
|
/// </summary>
|
|
public Dictionary<string, string> DictExec { get; set; } = new Dictionary<string, string>();
|
|
}
|
|
}
|