fengling-console/Models/Dtos/TenantSettingsDto.cs
2026-02-05 14:13:47 +08:00

12 lines
402 B
C#

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<string> PasswordPolicy { get; set; } = new();
public int MinPasswordLength { get; set; } = 8;
public int SessionTimeout { get; set; } = 120;
}