mirror of
https://github.com/bitwarden/server.git
synced 2025-07-01 16:12:49 -05:00
10 lines
224 B
C#
10 lines
224 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; }
|
|
}
|