bitwarden-android/src/Core/Models/Response/IdentityCaptchaResponse.cs
2022-04-26 17:21:17 +02:00

13 lines
263 B
C#

using System.Collections.Generic;
using Bit.Core.Enums;
using Newtonsoft.Json;
namespace Bit.Core.Models.Response
{
public class IdentityCaptchaResponse
{
[JsonProperty("HCaptcha_SiteKey")]
public string SiteKey { get; set; }
}
}