12 lines
278 B
C#
12 lines
278 B
C#
namespace MachineSim
|
|
{
|
|
public class SimDisplayDataDTO : MP.MONO.Core.DTO.DisplayDataDTO
|
|
{
|
|
#region Public Properties
|
|
|
|
public double SimMean { get; set; } = 0;
|
|
public double SimStd { get; set; } = 1;
|
|
|
|
#endregion Public Properties
|
|
}
|
|
} |