vgquotes/Src/VideoGameQuotes.Web/Models/SubmitQuoteModel.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

7 lines
267 B
C#

namespace VideoGameQuotes.Web.Models {
public class SubmitQuoteModel : EditQuoteModelBase, ICaptchaModel {
public string CaptchaAnswer { get; set; }
public string HashedCaptchaAnswer { get; set; }
public string UnhashedCaptchaAnswer { get; set; }
}
}