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