Files
lux/EgwCoreLib.Lux.Core/Generic/BalanceReqDTO.cs
T
2026-06-30 10:23:12 +02:00

18 lines
538 B
C#

namespace EgwCoreLib.Lux.Core.Generic
{
/// <summary>
/// Definizione richiesta di bilanciamento per il calcolo
/// </summary>
public class BalanceReqDto
{
#region Public Properties
public int GroupIdx { get; set; } = 0;
public int BarLenght { get; set; } = 10000;
public Dictionary<string, double> MachineBalance { get; set; } = new Dictionary<string, double>();
public List<string> TagList { get; set; } = new List<string>();
#endregion Public Properties
}
}