using System.ComponentModel.DataAnnotations;
namespace Jellyfin.Api.Models.UserDtos
{
    /// 
    /// Forgot Password request body DTO.
    /// 
    public class ForgotPasswordDto
    {
        /// 
        /// Gets or sets the entered username to have its password reset.
        /// 
        [Required]
        public string? EnteredUsername { get; set; }
    }
}