aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/PPC/Tango.PPC.Shared
diff options
context:
space:
mode:
authorRoy Ben Shabat <Roy.mail.net@gmail.com>2020-08-19 05:18:18 +0300
committerRoy Ben Shabat <Roy.mail.net@gmail.com>2020-08-19 05:18:18 +0300
commitee5797d5754ff5b15f5d5224a8d797806701bb00 (patch)
tree030b7244b7e66bb59344bf0beb798922a6275abd /Software/Visual_Studio/PPC/Tango.PPC.Shared
parentba766608b41016546bc5be1a7246d8b60e180317 (diff)
downloadTango-ee5797d5754ff5b15f5d5224a8d797806701bb00.tar.gz
Tango-ee5797d5754ff5b15f5d5224a8d797806701bb00.zip
Added insights selection to request message.
Diffstat (limited to 'Software/Visual_Studio/PPC/Tango.PPC.Shared')
-rw-r--r--Software/Visual_Studio/PPC/Tango.PPC.Shared/Insights/InsightsRequest.cs9
1 files changed, 9 insertions, 0 deletions
diff --git a/Software/Visual_Studio/PPC/Tango.PPC.Shared/Insights/InsightsRequest.cs b/Software/Visual_Studio/PPC/Tango.PPC.Shared/Insights/InsightsRequest.cs
index 23d19f4c9..6603a05b5 100644
--- a/Software/Visual_Studio/PPC/Tango.PPC.Shared/Insights/InsightsRequest.cs
+++ b/Software/Visual_Studio/PPC/Tango.PPC.Shared/Insights/InsightsRequest.cs
@@ -10,5 +10,14 @@ namespace Tango.PPC.Shared.Insights
{
public DateTime StartDateUTC { get; set; }
public DateTime EndDateUTC { get; set; }
+
+ public bool IncludeEvents { get; set; }
+ public bool IncludeStatuses { get; set; }
+
+ public InsightsRequest()
+ {
+ IncludeEvents = true;
+ IncludeStatuses = true;
+ }
}
}