vgquotes/Src/VideoGameQuotes.Web/Models/ICaptchaModel.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
211 B
C#

namespace VideoGameQuotes.Web.Models {
public interface ICaptchaModel {
string CaptchaAnswer { get; set; }
string HashedCaptchaAnswer { get; set; }
string UnhashedCaptchaAnswer { get; set; }
}
}