vgquotes/Src/VideoGameQuotes.Web/Models/ICaptchaModel.cs

7 lines
211 B
C#
Raw Normal View History

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