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