31 lines
765 B
C#
31 lines
765 B
C#
using Egw.Window.Data;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace WebWindowComplex.DTO
|
|
{
|
|
/// <summary>
|
|
/// Payload info del profilo
|
|
/// </summary>
|
|
public class ProfilePayload
|
|
{
|
|
/// <summary>
|
|
/// Nome profilo
|
|
/// </summary>
|
|
public string ProfileName { get; set; } = null!;
|
|
|
|
/// <summary>
|
|
/// Soglie del profilo
|
|
/// </summary>
|
|
public List<Threshold> ThresholdList { get; set; } = null!;
|
|
|
|
/// <summary>
|
|
/// Dizionario dei parametri del profilo
|
|
/// </summary>
|
|
public Dictionary<string, double> ParameterDict { get; set; } = new Dictionary<string, double>();
|
|
}
|
|
}
|