vgquotes/Src/VideoGameQuotes.Web/Models/CreatePublisherModel.cs
tmont d159a91208 * submit quote is a little bit sexier (still needs some work)
* added the loading gif when you vote on a quote
2011-02-23 01:30:53 +00:00

9 lines
298 B
C#

using System.ComponentModel.DataAnnotations;
namespace VideoGameQuotes.Web.Models {
public class CreatePublisherModel {
[Required(ErrorMessage = "Publishers must have a name, douchebag")]
public string PublisherName { get; set; }
public string PublisherWebsite { get; set; }
}
}