Skip to content

Instantly share code, notes, and snippets.

@mehmetcakmaz
Last active May 26, 2019 14:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mehmetcakmaz/acd16870771777ded6869165c2a8c8e8 to your computer and use it in GitHub Desktop.
Save mehmetcakmaz/acd16870771777ded6869165c2a8c8e8 to your computer and use it in GitHub Desktop.
using System.Collections.Generic;
using Newtonsoft.Json;
namespace reCAPTCHAv3.netCore.Models
{
public class TokenResponse
{
[JsonProperty("success")]
public bool Success { get; set; }
[JsonProperty("score")]
public decimal Score { get; set; }
[JsonProperty("action")]
public string Action { get; set; }
[JsonProperty("error-codes")]
public List<string> ErrorCodes { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment