mirror of
https://github.com/bitwarden/server.git
synced 2025-04-25 06:42:22 -05:00
12 lines
278 B
C#
12 lines
278 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; }
|
|
}
|