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; }
|
|||
|
}
|
|||
|
}
|