using System;
using System.Collections.Generic;
using System.Text;
namespace Egw.Data.Window.Dto
{
///
/// Payload info del profilo
///
public class ProfilePayload
{
///
/// Nome profilo
///
public string ProfileName { get; set; } = "";
///
/// Soglie del profilo
///
public List ThresholdList { get; set; } = new List();
///
/// Dizionario dei parametri del profilo
///
public Dictionary ParameterDict { get; set; } = new Dictionary();
}
}