using DotBased.ASP.Auth.Services; namespace DotBased.ASP.Auth; public class BasedAuthConfiguration { /// /// Allow users to registrate. /// public bool AllowRegistration { get; set; } //TODO: Callback when a user registers, so the application can handle sending emails or generate a code to complete the registration. public string LoginPath { get; set; } = string.Empty; public string LogoutPath { get; set; } = string.Empty; /// /// The max age before a AuthenticationState will expire (default: 7 days). /// public TimeSpan AuthenticationStateMaxAgeBeforeExpire { get; set; } = TimeSpan.FromDays(7); //TODO: Data seeding public Action? SeedData { get; set; } }