namespace PowderCoating.Core.Entities; /// /// Well-known keys for the PlatformSettings table. /// public static class PlatformSettingKeys { public const string AdminNotificationEmail = "AdminNotificationEmail"; public const string BaseUrl = "BaseUrl"; public const string TrialPeriodDays = "TrialPeriodDays"; public const string TrialsEnabled = "TrialsEnabled"; public const string QuoteApprovalTokenDays = "QuoteApprovalTokenDays"; public const string AuditLogRetentionDays = "AuditLogRetentionDays"; public const string StripeWebhookRetentionDays = "StripeWebhookRetentionDays"; public const string MaxTenants = "MaxTenants"; public const string SmsEnabled = "SmsEnabled"; public const string AiCatalogPriceCheckEnabled = "AiCatalogPriceCheckEnabled"; }