jellyfin/Jellyfin.Api/Models/UserDtos/ForgotPasswordPinDto.cs

16 lines
367 B
C#
Raw Normal View History

2021-02-06 11:18:37 -05:00
using System.ComponentModel.DataAnnotations;
2023-01-31 06:18:10 -05:00
namespace Jellyfin.Api.Models.UserDtos;
/// <summary>
/// Forgot Password Pin enter request body DTO.
/// </summary>
public class ForgotPasswordPinDto
2021-02-06 11:18:37 -05:00
{
/// <summary>
2023-01-31 06:18:10 -05:00
/// Gets or sets the entered pin to have the password reset.
2021-02-06 11:18:37 -05:00
/// </summary>
2023-01-31 06:18:10 -05:00
[Required]
public required string Pin { get; set; }
2021-02-06 11:18:37 -05:00
}