1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-16 16:23:29 +00:00

Add ssoToken to limit lifetime of SSO redirect (#1965)

This commit is contained in:
Matt Gibson
2022-06-27 15:53:15 -04:00
committed by GitHub
parent 109aeb49e4
commit 6e2e613fee
4 changed files with 16 additions and 5 deletions

View File

@@ -0,0 +1,7 @@
namespace Bit.Core.Models.Response
{
public class SsoPrevalidateResponse
{
public string Token { get; set; }
}
}