37 lines
911 B
C#
37 lines
911 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace EgtBEAMWALL.StressTest
|
|
{
|
|
/// <summary>
|
|
/// Configurazione simulazione
|
|
/// </summary>
|
|
public class SimParams
|
|
{
|
|
#region Public Properties
|
|
|
|
/// <summary>
|
|
/// Numero massimo di BtlPart associate a Proj
|
|
/// </summary>
|
|
public int BtlPart2Proj { get; set; } = 20;
|
|
|
|
/// <summary>
|
|
/// Numero massimo di istanze x BtlPart
|
|
/// </summary>
|
|
public int BtlRepeat { get; set; } = 5;
|
|
|
|
/// <summary>
|
|
/// Numero massimo di Part associate a MachGroup
|
|
/// </summary>
|
|
public int Part2MachGroup { get; set; } = 20;
|
|
|
|
/// <summary>
|
|
/// Numero massimo di Proj associati in un Prod
|
|
/// </summary>
|
|
public int Proj2Prod { get; set; } = 2;
|
|
|
|
#endregion Public Properties
|
|
}
|
|
} |