diff options
| author | Roy Ben-Shabat <Roy@Twine-s.com> | 2019-02-25 18:42:32 +0200 |
|---|---|---|
| committer | Roy Ben-Shabat <Roy@Twine-s.com> | 2019-02-25 18:42:32 +0200 |
| commit | cae62907383a8b9be03bf3e0b8f9c8b26427ee21 (patch) | |
| tree | aff9ad15e4c52edd43e310219b8273f8cef5ebcd /Software/Visual_Studio/Web/Tango.MachineService/Controllers/DownloadsController.cs | |
| parent | e112866a2cf44ddeb5b40e8ffc84614ecfe6abdf (diff) | |
| download | Tango-cae62907383a8b9be03bf3e0b8f9c8b26427ee21.tar.gz Tango-cae62907383a8b9be03bf3e0b8f9c8b26427ee21.zip | |
Started working on machine service, download controller.
Diffstat (limited to 'Software/Visual_Studio/Web/Tango.MachineService/Controllers/DownloadsController.cs')
| -rw-r--r-- | Software/Visual_Studio/Web/Tango.MachineService/Controllers/DownloadsController.cs | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Web/Tango.MachineService/Controllers/DownloadsController.cs b/Software/Visual_Studio/Web/Tango.MachineService/Controllers/DownloadsController.cs new file mode 100644 index 000000000..126b794ea --- /dev/null +++ b/Software/Visual_Studio/Web/Tango.MachineService/Controllers/DownloadsController.cs @@ -0,0 +1,17 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Web; +using System.Web.Mvc; + +namespace Tango.MachineService.Controllers +{ + public class DownloadsController : Controller + { + // GET: Downloads + public ActionResult Index() + { + return View(); + } + } +}
\ No newline at end of file |
