mirror of
https://github.com/bitwarden/android.git
synced 2025-01-22 15:53:47 +03:00
13 lines
263 B
C#
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; }
|
|
}
|
|
|
|
}
|