aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Api/Models/UserDtos/CreateUserByName.cs
blob: 1c88d362873c02e2a89d240f7aa9ec10aa82396d (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 create user by name request body.
    /// </summary>
    public class CreateUserByName
    {
        /// <summary>
        /// Gets or sets the username.
        /// </summary>
        public string? Name { get; set; }

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