mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2026-01-24 05:42:10 +08:00
9 lines
338 B
C#
9 lines
338 B
C#
using Orchard.ContentManagement.Records;
|
|
|
|
namespace Orchard.AntiSpam.Models {
|
|
public class ReCaptchaSettingsPartRecord : ContentPartRecord {
|
|
public virtual string PublicKey { get; set; }
|
|
public virtual string PrivateKey { get; set; }
|
|
public virtual bool TrustAuthenticatedUsers { get; set; }
|
|
}
|
|
} |