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

19 lines
495 B
C#

using System.ComponentModel.DataAnnotations;
using Portoa.Validation.DataAnnotations;
namespace VideoGameQuotes.Web.Models {
public class ContactModel {
[Required]
public string Name { get; set; }
[Email]
public string Email { get; set; }
[Required]
public string Message { get; set; }
[Required]
public string CaptchaAnswer { get; set; }
[Required]
public string HashedCaptchaAnswer { get; set; }
public string UnhashedCaptchaAnswer { get; set; }
}
}