mirror of
https://github.com/bitwarden/server.git
synced 2026-02-07 09:23:10 +08:00
13 lines
304 B
C#
13 lines
304 B
C#
|
|
using Bit.Core.Entities;
|
|||
|
|
using Bit.Core.Models.Business;
|
|||
|
|
|
|||
|
|
namespace Bit.Core.IdentityServer
|
|||
|
|
{
|
|||
|
|
public class CustomValidatorRequestContext
|
|||
|
|
{
|
|||
|
|
public User User { get; set; }
|
|||
|
|
public bool KnownDevice { get; set; }
|
|||
|
|
public CaptchaResponse CaptchaResponse { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|