diff options
| author | Roy <Roy.mail.net@gmail.com> | 2022-10-27 17:54:49 +0300 |
|---|---|---|
| committer | Roy <Roy.mail.net@gmail.com> | 2022-10-27 17:54:49 +0300 |
| commit | 3f32716c553a5f13770c38b3a49c81259ac4ba08 (patch) | |
| tree | 9e384ce8167ac0ac42e58904362c42590e1ac455 /Software/Visual_Studio/PPC/Tango.PPC.Shared | |
| parent | ff83c0166397d03b923157751d8b406615c977f7 (diff) | |
| download | Tango-3f32716c553a5f13770c38b3a49c81259ac4ba08.tar.gz Tango-3f32716c553a5f13770c38b3a49c81259ac4ba08.zip | |
Implemented hot folder architecture & installers integration.
Diffstat (limited to 'Software/Visual_Studio/PPC/Tango.PPC.Shared')
6 files changed, 71 insertions, 0 deletions
diff --git a/Software/Visual_Studio/PPC/Tango.PPC.Shared/RemoteJobUpload/RemoteJobUploadCompletedRequest.cs b/Software/Visual_Studio/PPC/Tango.PPC.Shared/RemoteJobUpload/RemoteJobUploadCompletedRequest.cs new file mode 100644 index 000000000..6453f1474 --- /dev/null +++ b/Software/Visual_Studio/PPC/Tango.PPC.Shared/RemoteJobUpload/RemoteJobUploadCompletedRequest.cs @@ -0,0 +1,13 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Tango.PPC.Shared.RemoteJobUpload +{ + public class RemoteJobUploadCompletedRequest + { + public String ID { get; set; } + } +} diff --git a/Software/Visual_Studio/PPC/Tango.PPC.Shared/RemoteJobUpload/RemoteJobUploadCompletedResponse.cs b/Software/Visual_Studio/PPC/Tango.PPC.Shared/RemoteJobUpload/RemoteJobUploadCompletedResponse.cs new file mode 100644 index 000000000..ff8502dac --- /dev/null +++ b/Software/Visual_Studio/PPC/Tango.PPC.Shared/RemoteJobUpload/RemoteJobUploadCompletedResponse.cs @@ -0,0 +1,13 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Tango.PPC.Shared.RemoteJobUpload +{ + public class RemoteJobUploadCompletedResponse + { + + } +} diff --git a/Software/Visual_Studio/PPC/Tango.PPC.Shared/RemoteJobUpload/RemoteJobUploadRequest.cs b/Software/Visual_Studio/PPC/Tango.PPC.Shared/RemoteJobUpload/RemoteJobUploadRequest.cs new file mode 100644 index 000000000..86ca43fda --- /dev/null +++ b/Software/Visual_Studio/PPC/Tango.PPC.Shared/RemoteJobUpload/RemoteJobUploadRequest.cs @@ -0,0 +1,13 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Tango.PPC.Shared.RemoteJobUpload +{ + public class RemoteJobUploadRequest + { + public RemoteJobUploadType Type { get; set; } + } +} diff --git a/Software/Visual_Studio/PPC/Tango.PPC.Shared/RemoteJobUpload/RemoteJobUploadResponse.cs b/Software/Visual_Studio/PPC/Tango.PPC.Shared/RemoteJobUpload/RemoteJobUploadResponse.cs new file mode 100644 index 000000000..b372740fd --- /dev/null +++ b/Software/Visual_Studio/PPC/Tango.PPC.Shared/RemoteJobUpload/RemoteJobUploadResponse.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.RemoteJobUpload +{ + public class RemoteJobUploadResponse + { + public String ID { get; set; } + public String TargetFilePath { get; set; } + } +} diff --git a/Software/Visual_Studio/PPC/Tango.PPC.Shared/RemoteJobUpload/RemoteJobUploadType.cs b/Software/Visual_Studio/PPC/Tango.PPC.Shared/RemoteJobUpload/RemoteJobUploadType.cs new file mode 100644 index 000000000..641aa5038 --- /dev/null +++ b/Software/Visual_Studio/PPC/Tango.PPC.Shared/RemoteJobUpload/RemoteJobUploadType.cs @@ -0,0 +1,13 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Tango.PPC.Shared.RemoteJobUpload +{ + public enum RemoteJobUploadType + { + CSV + } +} 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 8548aa9cc..73f142f67 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 @@ -106,6 +106,11 @@ <Compile Include="RemoteActions\RestartApplicationResponse.cs" /> <Compile Include="RemoteActions\SimulateApplicationExceptionRequest.cs" /> <Compile Include="RemoteActions\SimulateApplicationExceptionResponse.cs" /> + <Compile Include="RemoteJobUpload\RemoteJobUploadCompletedRequest.cs" /> + <Compile Include="RemoteJobUpload\RemoteJobUploadCompletedResponse.cs" /> + <Compile Include="RemoteJobUpload\RemoteJobUploadRequest.cs" /> + <Compile Include="RemoteJobUpload\RemoteJobUploadResponse.cs" /> + <Compile Include="RemoteJobUpload\RemoteJobUploadType.cs" /> <Compile Include="RemoteUpgrade\StartRemoteFirmwareUpgradeRequest.cs" /> <Compile Include="RemoteUpgrade\StartRemoteFirmwareUpgradeResponse.cs" /> <Compile Include="RemoteUpgrade\StartRemoteApplicationUpgradeResponse.cs" /> |
