namespace Fengling.Console.Models.Dtos; public class TenantSettingsDto { public bool AllowRegistration { get; set; } public string AllowedEmailDomains { get; set; } = string.Empty; public long? DefaultRoleId { get; set; } public List PasswordPolicy { get; set; } = new(); public int MinPasswordLength { get; set; } = 8; public int SessionTimeout { get; set; } = 120; }