24 lines
873 B
C#
24 lines
873 B
C#
using DTS.Common.Interface.DASFactory.Diagnostics;
|
|
|
|
namespace DTS.DASLib.Service
|
|
{
|
|
/// <summary>
|
|
/// This class holds the results from one module's diagnostics.
|
|
/// </summary>
|
|
public class ModuleDiagnosticsResult : IModuleDiagnosticsResult
|
|
{
|
|
/// <summary>
|
|
/// from which this diagnostics is returning.
|
|
/// </summary>
|
|
public float TemperatureLocation1Pre { get; set; }
|
|
public float TemperatureLocation2Pre { get; set; }
|
|
public float TemperatureLocation3Pre { get; set; }
|
|
public float TemperatureLocation4Pre { get; set; }
|
|
public float TemperatureLocation1Post { get; set; }
|
|
public float TemperatureLocation2Post { get; set; }
|
|
public float TemperatureLocation3Post { get; set; }
|
|
public float TemperatureLocation4Post { get; set; }
|
|
|
|
}
|
|
}
|