init
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
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; }
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user