diff options
| author | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2020-08-17 01:14:07 +0300 |
|---|---|---|
| committer | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2020-08-17 01:14:07 +0300 |
| commit | f4c418cced4c6fb25ec5d4cb2bcb4ce0f766efd0 (patch) | |
| tree | 6407154a8f42f45e9045b81a54d5f981567faec2 /Software/Visual_Studio/PPC/Tango.PPC.Shared | |
| parent | e47e602cd61bcca8eb7fbef40dc4aa8798510ccc (diff) | |
| download | Tango-f4c418cced4c6fb25ec5d4cb2bcb4ce0f766efd0.tar.gz Tango-f4c418cced4c6fb25ec5d4cb2bcb4ce0f766efd0.zip | |
Working on insights...
Diffstat (limited to 'Software/Visual_Studio/PPC/Tango.PPC.Shared')
3 files changed, 30 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 new file mode 100644 index 000000000..23d19f4c9 --- /dev/null +++ b/Software/Visual_Studio/PPC/Tango.PPC.Shared/Insights/InsightsRequest.cs @@ -0,0 +1,14 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Tango.PPC.Shared.Insights +{ + public class InsightsRequest + { + public DateTime StartDateUTC { get; set; } + public DateTime EndDateUTC { get; set; } + } +} diff --git a/Software/Visual_Studio/PPC/Tango.PPC.Shared/Insights/InsightsResponse.cs b/Software/Visual_Studio/PPC/Tango.PPC.Shared/Insights/InsightsResponse.cs new file mode 100644 index 000000000..38333a459 --- /dev/null +++ b/Software/Visual_Studio/PPC/Tango.PPC.Shared/Insights/InsightsResponse.cs @@ -0,0 +1,14 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Tango.PPC.Shared.Insights +{ + public class InsightsResponse + { + public String InisightsFilePath { get; set; } + public long InsightsFileLength { get; set; } + } +} diff --git a/Software/Visual_Studio/PPC/Tango.PPC.Shared/Tango.PPC.Shared.csproj b/Software/Visual_Studio/PPC/Tango.PPC.Shared/Tango.PPC.Shared.csproj index a0cc9b153..cc39c8746 100644 --- a/Software/Visual_Studio/PPC/Tango.PPC.Shared/Tango.PPC.Shared.csproj +++ b/Software/Visual_Studio/PPC/Tango.PPC.Shared/Tango.PPC.Shared.csproj @@ -65,6 +65,8 @@ <Compile Include="Information\GetMachineInformationRequest.cs" /> <Compile Include="Information\GetMachineInformationResponse.cs" /> <Compile Include="Information\InformationPackage.cs" /> + <Compile Include="Insights\InsightsRequest.cs" /> + <Compile Include="Insights\InsightsResponse.cs" /> <Compile Include="Jobs\RemoteJobProgress.cs" /> <Compile Include="Jobs\RemoteJobStage.cs" /> <Compile Include="Jobs\RemoteJobUpdateRequest.cs" /> |
