tmont
25172d14a3
* renamed css file * removed copypaste code for js includes * added pdn files * changed unused images/javascript build type from Content to None
7 lines
211 B
C#
7 lines
211 B
C#
namespace VideoGameQuotes.Web.Models {
|
|
public interface ICaptchaModel {
|
|
string CaptchaAnswer { get; set; }
|
|
string HashedCaptchaAnswer { get; set; }
|
|
string UnhashedCaptchaAnswer { get; set; }
|
|
}
|
|
} |