diff options
| author | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2020-08-19 05:18:18 +0300 |
|---|---|---|
| committer | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2020-08-19 05:18:18 +0300 |
| commit | ee5797d5754ff5b15f5d5224a8d797806701bb00 (patch) | |
| tree | 030b7244b7e66bb59344bf0beb798922a6275abd /Software/Visual_Studio/PPC/Tango.PPC.Shared | |
| parent | ba766608b41016546bc5be1a7246d8b60e180317 (diff) | |
| download | Tango-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.cs | 9 |
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; + } } } |
