1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-11 16:18:14 -05:00
bitwarden/src/Identity/Models/Response/Accounts/ICaptchaProtectedResponseModel.cs
Jared Snider 29b47f72ca
Auth/PM-3833 - Remove Deprecated Register and Prelogin endpoints from API ()
* PM-3833 - API - AccountsController.cs && AccountsController.cs - remove prelogin and register endpoints.

* PM-3833 - Move Request and Response models that were used for Prelogin and PostRegister from API to Identity.

* PM-3833 - FIX LINT

* PM-3833 - Fix issues after merge conflict fixes.

* PM-3833 - Another test fix
2024-06-19 15:11:24 -04:00

6 lines
155 B
C#

namespace Bit.Identity.Models.Response.Accounts;
public interface ICaptchaProtectedResponseModel
{
public string CaptchaBypassToken { get; set; }
}