12 lines
374 B
C#
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;
|
|
}
|