vgquotes/Src/VideoGameQuotes.Web/Models/ContactModel.cs
tmont 25172d14a3 * compressed javascript
* renamed css file
* removed copypaste code for js includes
* added pdn files
* changed unused images/javascript build type from Content to None
2011-03-01 00:11:17 +00:00

19 lines
511 B
C#

using System.ComponentModel.DataAnnotations;
using Portoa.Validation.DataAnnotations;
namespace VideoGameQuotes.Web.Models {
public class ContactModel : ICaptchaModel {
[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; }
}
}