aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Api/Models/UserDtos/AuthenticateUserByName.cs
blob: 31208264fbe8825bf12291637d84bd7f334209de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
namespace Jellyfin.Api.Models.UserDtos
{
    /// <summary>
    /// The authenticate user by name request body.
    /// </summary>
    public class AuthenticateUserByName
    {
        /// <summary>
        /// Gets or sets the username.
        /// </summary>
        public string? Username { get; set; }

        /// <summary>
        /// Gets or sets the plain text password.
        /// </summary>
        public string? Pw { get; set; }
    }
}