diff options
| author | Roy Ben-Shabat <Roy@Twine-s.com> | 2019-02-27 18:56:38 +0200 |
|---|---|---|
| committer | Roy Ben-Shabat <Roy@Twine-s.com> | 2019-02-27 18:56:38 +0200 |
| commit | d059f6d6f4de2678555f23a357d69686e595ad29 (patch) | |
| tree | e7dcc4b09f94a9bea46029e77fbc96d80889b900 /Software/Visual_Studio/Web/Tango.MachineService/Models | |
| parent | cb36c0b1ff561c072a1a63a8d184899336249e16 (diff) | |
| download | Tango-d059f6d6f4de2678555f23a357d69686e595ad29.tar.gz Tango-d059f6d6f4de2678555f23a357d69686e595ad29.zip | |
Added machine service downloads site.
Diffstat (limited to 'Software/Visual_Studio/Web/Tango.MachineService/Models')
| -rw-r--r-- | Software/Visual_Studio/Web/Tango.MachineService/Models/DownloadModel.cs | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/Software/Visual_Studio/Web/Tango.MachineService/Models/DownloadModel.cs b/Software/Visual_Studio/Web/Tango.MachineService/Models/DownloadModel.cs index 4239647e9..b13f5c66f 100644 --- a/Software/Visual_Studio/Web/Tango.MachineService/Models/DownloadModel.cs +++ b/Software/Visual_Studio/Web/Tango.MachineService/Models/DownloadModel.cs @@ -7,10 +7,18 @@ namespace Tango.MachineService.Models { public class DownloadModel { + public DownloadApp App { get; set; } public String ID { get; set; } public String Name { get; set; } - public String Date { get; set; } + public String Version { get; set; } + public DateTime Date { get; set; } public String User { get; set; } public String Comments { get; set; } + + public enum DownloadApp + { + MachineStudio, + PPC, + } } }
\ No newline at end of file |
