diff options
| author | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2020-04-11 05:02:18 +0300 |
|---|---|---|
| committer | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2020-04-11 05:02:18 +0300 |
| commit | bf5cbf5a6972cd8d725cc03fd6375b1eccbfe31c (patch) | |
| tree | 0902fda382956c1b749cf856d2a4d950f0196190 /Software/Visual_Studio/FSE/Tango.FSE.Web | |
| parent | cb1b51c238c64f570d73b7dca6a2eee205b2da01 (diff) | |
| download | Tango-bf5cbf5a6972cd8d725cc03fd6375b1eccbfe31c.tar.gz Tango-bf5cbf5a6972cd8d725cc03fd6375b1eccbfe31c.zip | |
Started working on FSE TUP management.
Diffstat (limited to 'Software/Visual_Studio/FSE/Tango.FSE.Web')
3 files changed, 34 insertions, 0 deletions
diff --git a/Software/Visual_Studio/FSE/Tango.FSE.Web/Messages/DownloadTangoVersionRequest.cs b/Software/Visual_Studio/FSE/Tango.FSE.Web/Messages/DownloadTangoVersionRequest.cs new file mode 100644 index 000000000..ffe0910cb --- /dev/null +++ b/Software/Visual_Studio/FSE/Tango.FSE.Web/Messages/DownloadTangoVersionRequest.cs @@ -0,0 +1,14 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using Tango.Transport.Web; + +namespace Tango.FSE.Web.Messages +{ + public class DownloadTangoVersionRequest : WebRequestMessage + { + public String TangoVersionGuid { get; set; } + } +} diff --git a/Software/Visual_Studio/FSE/Tango.FSE.Web/Messages/DownloadTangoVersionResponse.cs b/Software/Visual_Studio/FSE/Tango.FSE.Web/Messages/DownloadTangoVersionResponse.cs new file mode 100644 index 000000000..d44859e8d --- /dev/null +++ b/Software/Visual_Studio/FSE/Tango.FSE.Web/Messages/DownloadTangoVersionResponse.cs @@ -0,0 +1,18 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using Tango.Core; +using Tango.Transport.Web; + +namespace Tango.FSE.Web.Messages +{ + public class DownloadTangoVersionResponse : WebResponseMessage + { + public String Version { get; set; } + public String BlobAddress { get; set; } + public String CdnAddress { get; set; } + public DataSource DataSource { get; set; } + } +} diff --git a/Software/Visual_Studio/FSE/Tango.FSE.Web/Tango.FSE.Web.csproj b/Software/Visual_Studio/FSE/Tango.FSE.Web/Tango.FSE.Web.csproj index 299240d60..bd42e54f5 100644 --- a/Software/Visual_Studio/FSE/Tango.FSE.Web/Tango.FSE.Web.csproj +++ b/Software/Visual_Studio/FSE/Tango.FSE.Web/Tango.FSE.Web.csproj @@ -43,6 +43,8 @@ <ItemGroup> <Compile Include="Messages\BugReportingInfoRequest.cs" /> <Compile Include="Messages\BugReportingInfoResponse.cs" /> + <Compile Include="Messages\DownloadTangoVersionRequest.cs" /> + <Compile Include="Messages\DownloadTangoVersionResponse.cs" /> <Compile Include="Messages\LoginRequest.cs" /> <Compile Include="Messages\LoginResponse.cs" /> <Compile Include="Properties\AssemblyInfo.cs" /> |
