vgquotes/Src/VideoGameQuotes.Web/Models/EditCategoryModel.cs
tmont ff3499b3b9 * edit/create/delete categories
* also made error views user-aware
2011-02-24 08:07:50 +00:00

9 lines
287 B
C#

using System.ComponentModel.DataAnnotations;
namespace VideoGameQuotes.Web.Models {
public class EditCategoryModel {
public int CategoryId { get; set; }
[Required(ErrorMessage = "The category must have a name, queerball")]
public string CategoryName { get; set; }
}
}