@@ -0,0 +1,17 @@
|
||||
namespace Api.Models.Settings
|
||||
{
|
||||
public sealed class CaptchaSettings
|
||||
{
|
||||
// "Recaptcha" for now (easy to extend later)
|
||||
public string Provider { get; set; } = "Recaptcha";
|
||||
|
||||
public string SecretKey { get; set; } = "";
|
||||
public string PublicKey { get; set; } = "";
|
||||
// Only relevant for reCAPTCHA v3 (score-based)
|
||||
public double MinimumScore { get; set; } = 0.5;
|
||||
|
||||
// Optional but recommended for v3: enforce expected action and/or hostname
|
||||
public string? ExpectedAction { get; set; }
|
||||
public string? ExpectedHostname { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
namespace Api.Models.Settings
|
||||
{
|
||||
public sealed class ContactSettings
|
||||
{
|
||||
public string ToEmail { get; set; } = "";
|
||||
public string SubjectPrefix { get; set; } = "[Contact]";
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
namespace Api.Models.Settings
|
||||
{
|
||||
public sealed class FileStorageSettings
|
||||
{
|
||||
public string Path { get; set; } = "Files";
|
||||
public string DefaultFileName { get; set; } = "";
|
||||
public string ToEmail { get; set; } = "";
|
||||
public string SubjectPrefix { get; set; } = "[File Download]";
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
namespace Api.Models.Settings
|
||||
{
|
||||
public sealed class GoogleSettings
|
||||
{
|
||||
public string TagManagerId { get; set; } = "";
|
||||
public string MapKey { get; set; } = "";
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
namespace Api.Models.Settings
|
||||
{
|
||||
public sealed class KeyVaultSettings
|
||||
{
|
||||
public string VaultUri { get; set; } = "";
|
||||
public bool Enabled { get; set; } = false;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
namespace Api.Models.Settings
|
||||
{
|
||||
public class SmtpSettings
|
||||
{
|
||||
public string Host { get; set; } = "";
|
||||
public int Port { get; set; } = 587;
|
||||
public string Username { get; set; } = "";
|
||||
public string Password { get; set; } = "";
|
||||
public bool UseStartTls { get; set; } = true;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
namespace Api.Models.Settings
|
||||
{
|
||||
public sealed class SubscribeSettings
|
||||
{
|
||||
public string ToEmail { get; set; } = "";
|
||||
public string SubjectPrefix { get; set; } = "[Subscribe]";
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user