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

18 lines
395 B
C#
Raw Normal View History

2023-01-31 12:18:10 +01:00
namespace Jellyfin.Api.Models.UserDtos;
/// <summary>
/// The authenticate user by name request body.
/// </summary>
public class AuthenticateUserByName
{
2020-06-18 19:35:29 +02:00
/// <summary>
2023-01-31 12:18:10 +01:00
/// Gets or sets the username.
2020-06-18 19:35:29 +02:00
/// </summary>
2023-01-31 12:18:10 +01:00
public string? Username { get; set; }
2020-06-18 19:35:29 +02:00
2023-01-31 12:18:10 +01:00
/// <summary>
/// Gets or sets the plain text password.
/// </summary>
public string? Pw { get; set; }
}