namespace NexusReader.UI.Shared.Services; /// /// Strongly-typed feature settings for the client UI layer. /// Used to decouple the UI from raw IConfiguration to prevent exposure of sensitive settings. /// public class FeatureSettings { public bool AllowRegistration { get; set; } = true; public bool AllowPasswordReset { get; set; } = true; }