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