mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 05:00:19 -05:00
11 lines
254 B
C#
11 lines
254 B
C#
namespace Bit.Core.Models.Business
|
|
{
|
|
public class CaptchaResponse
|
|
{
|
|
public bool Success { get; set; }
|
|
public bool MaybeBot { get; set; }
|
|
public bool IsBot { get; set; }
|
|
public double Score { get; set; }
|
|
}
|
|
}
|