aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/PPC/Tango.PPC.Shared/Statistics/StatisticsResult.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Software/Visual_Studio/PPC/Tango.PPC.Shared/Statistics/StatisticsResult.cs')
-rw-r--r--Software/Visual_Studio/PPC/Tango.PPC.Shared/Statistics/StatisticsResult.cs3
1 files changed, 3 insertions, 0 deletions
diff --git a/Software/Visual_Studio/PPC/Tango.PPC.Shared/Statistics/StatisticsResult.cs b/Software/Visual_Studio/PPC/Tango.PPC.Shared/Statistics/StatisticsResult.cs
index 8cee4c545..3cbd26e32 100644
--- a/Software/Visual_Studio/PPC/Tango.PPC.Shared/Statistics/StatisticsResult.cs
+++ b/Software/Visual_Studio/PPC/Tango.PPC.Shared/Statistics/StatisticsResult.cs
@@ -11,9 +11,12 @@ namespace Tango.PPC.Shared.Statistics
{
public List<JobRunComposition> JobRuns { get; set; }
+ public List<LiquidTypeDTO> LiquidTypes { get; set; }
+
public StatisticsResult()
{
JobRuns = new List<JobRunComposition>();
+ LiquidTypes = new List<LiquidTypeDTO>();
}
}
}