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