vgquotes/Src/VideoGameQuotes.Web/Models/CreatePublisherModel.cs

9 lines
298 B
C#
Raw Normal View History

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; }
}
}