jellyfin/Jellyfin.Api/Models/UserDtos/ForgotPasswordPinDto.cs
Bond_009 97a02f5803 Remove BOM from UTF-8 files
I think some people need to change their IDE configuration ;)
2024-08-30 15:29:48 +02:00

16 lines
364 B
C#

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