namespace Nuuru.Server.DTOs.Settings { public class PublicSiteSettingsDto { public bool RegistrationEnabled { get; set; } public bool AnonymousUploadsEnabled { get; set; } public bool AnonymousCommentsEnabled { get; set; } public string CaptchaProvider { get; set; } = "none"; public string? CaptchaSiteKey { get; set; } public string? BlotterGalleryHtml { get; set; } public string? BlotterForumHtml { get; set; } } public class UpdateSiteSettingsRequest { public Dictionary Settings { get; set; } = new(); } }