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

7 lines
267 B
C#
Raw Normal View History

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