16 lines
490 B
C#
16 lines
490 B
C#
namespace EgwCoreLib.Lux.Core.Generic
|
|
{
|
|
/// <summary>
|
|
/// Definizione richiesta di bilanciamento per il calcolo
|
|
/// </summary>
|
|
public class BalanceReqDto
|
|
{
|
|
#region Public Properties
|
|
|
|
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
|
|
}
|
|
} |