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