diff options
Diffstat (limited to 'Project-Unite/Models/Skin.cs')
| -rw-r--r-- | Project-Unite/Models/Skin.cs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Project-Unite/Models/Skin.cs b/Project-Unite/Models/Skin.cs index b860518..521fc54 100644 --- a/Project-Unite/Models/Skin.cs +++ b/Project-Unite/Models/Skin.cs @@ -17,7 +17,7 @@ namespace Project_Unite.Models public string DownloadUrl { get; set; } public string ScreenshotUrl { get; set; } public DateTime PostedAt { get; set; } - + public string Keywords { get; set; } public Like[] Likes { get @@ -57,6 +57,8 @@ namespace Project_Unite.Models [MinLength(5, ErrorMessage = "You need to supply a valuable title.")] public string Title { get; set; } + public string Keywords { get; set; } + [Required] [MaxLength(500, ErrorMessage ="Your short description may not contain more than 500 characters.")] public string ShortDescription { get; set; } |
