namespace Mirea.Api.Dto.Common; /// /// Represents the password policy settings for user authentication. /// public class PasswordPolicy { /// /// Gets or sets the minimum length required for a password. /// public int MinimumLength { get; set; } /// /// Gets or sets a value indicating whether at least one letter is required in the password. /// public bool RequireLetter { get; set; } /// /// Gets or sets a value indicating whether the password must contain both lowercase and uppercase letters. /// public bool RequireLettersDifferentCase { get; set; } /// /// Gets or sets a value indicating whether at least one digit is required in the password. /// public bool RequireDigit { get; set; } /// /// Gets or sets a value indicating whether at least one special character is required in the password. /// public bool RequireSpecialCharacter { get; set; } }