mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2026-02-09 09:16:41 +08:00
11 lines
291 B
C#
11 lines
291 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace Orchard.DynamicForms.ViewModels {
|
|
public class ReCaptchaElementResponseModel {
|
|
[JsonProperty("success")]
|
|
public bool Success { get; set; }
|
|
|
|
[JsonProperty("error-codes")]
|
|
public string[] ErrorCodes { get; set; }
|
|
}
|
|
} |