Files
Nexus.Reader/src/NexusReader.UI.Shared/Services/FeatureSettings.cs
T

12 lines
374 B
C#

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