1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-06 13:38:13 -05:00
bitwarden/src/Core/Models/Api/Request/ICaptchaProtectedModel.cs
Matt Gibson 7a135ae7cd
Protect user registration with captcha (#1480)
* Protect user registration with captcha

* PR feedback
2021-07-22 12:29:06 -05:00

8 lines
135 B
C#

namespace Bit.Core.Models.Api
{
public interface ICaptchaProtectedModel
{
string CaptchaResponse { get; set; }
}
}