diff options
| author | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2020-07-28 15:27:05 +0300 |
|---|---|---|
| committer | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2020-07-28 15:27:05 +0300 |
| commit | 7c7aba43ab895d02e0209861550fed3bc12f3904 (patch) | |
| tree | 11287241a4cc80baa871712240ab82487c563f9f /Software/Visual_Studio/Web/Tango.MachineService/Models | |
| parent | 55b795f940282378784f0175803fcba62aecc816 (diff) | |
| download | Tango-7c7aba43ab895d02e0209861550fed3bc12f3904.tar.gz Tango-7c7aba43ab895d02e0209861550fed3bc12f3904.zip | |
Implemented Tango FSE Publish Utils.
Added FSE to AzureUtils on environment upgrade.
Diffstat (limited to 'Software/Visual_Studio/Web/Tango.MachineService/Models')
| -rw-r--r-- | Software/Visual_Studio/Web/Tango.MachineService/Models/FSEPendingUpload.cs | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Web/Tango.MachineService/Models/FSEPendingUpload.cs b/Software/Visual_Studio/Web/Tango.MachineService/Models/FSEPendingUpload.cs new file mode 100644 index 000000000..7bb74d045 --- /dev/null +++ b/Software/Visual_Studio/Web/Tango.MachineService/Models/FSEPendingUpload.cs @@ -0,0 +1,22 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Web; + +namespace Tango.MachineService.Models +{ + public class FSEPendingUpload + { + public String Token { get; set; } + + public String Version { get; set; } + + public String UserGuid { get; set; } + + public String Comments { get; set; } + + public String BlobName { get; set; } + + public String InstallerBlobName { get; set; } + } +}
\ No newline at end of file |
