diff options
| author | Michael <[email protected]> | 2017-03-26 11:09:28 -0400 |
|---|---|---|
| committer | Michael <[email protected]> | 2017-03-26 11:09:28 -0400 |
| commit | 70f527e9676ea0a15c50a8f255894d3085fac272 (patch) | |
| tree | 20340fee2d8be68f84c5165046913c48c34829a8 /Project-Unite/Models/Download.cs | |
| parent | 416b9241755b3b1a6f1ba6fe4fb8b5f4b7ae360e (diff) | |
| download | project-unite-70f527e9676ea0a15c50a8f255894d3085fac272.tar.gz project-unite-70f527e9676ea0a15c50a8f255894d3085fac272.tar.bz2 project-unite-70f527e9676ea0a15c50a8f255894d3085fac272.zip | |
Add downloads index
Diffstat (limited to 'Project-Unite/Models/Download.cs')
| -rw-r--r-- | Project-Unite/Models/Download.cs | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/Project-Unite/Models/Download.cs b/Project-Unite/Models/Download.cs new file mode 100644 index 0000000..1dcf2bb --- /dev/null +++ b/Project-Unite/Models/Download.cs @@ -0,0 +1,64 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel.DataAnnotations; +using System.Linq; +using System.Web; +using System.Web.Mvc; + +namespace Project_Unite.Models +{ + public class Download + { + [Required] + public string Id { get; set; } + + [Required] + public string Name { get; set; } + + [Required] + [AllowHtml] + public string Changelog { get; set; } + + [Required] + public string DownloadUrl { get; set; } + + [Required] + public bool Obsolete { get; set; } + + [Required] + public DateTime PostDate { get; set; } + + [Required] + public string ReleasedBy { get; set; } + + public string DevUpdateId { get; set; } + + + public string ScreenshotUrl { get; set; } + + [Required] + public bool IsStable { get; set; } + } + + public class PostDownloadViewModel + { + [Required] + public string Name { get; set; } + + public HttpPostedFileBase Screenshot { get; set; } + + public string DevUpdateId { get; set; } + + [Required] + public bool IsStable { get; set; } + + [Required] + [AllowHtml] + public string Changelog { get; set; } + + [Required] + [DataType(DataType.Upload)] + public HttpPostedFileBase Download { get; set; } + + } +}
\ No newline at end of file |
