aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Api/Models/Startup/StartupUserDto.cs
blob: 7e890d76a0504582da5ee584652973bcc20a1e41 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
namespace Jellyfin.Api.Models.Startup
{
    /// <summary>
    /// The startup user DTO.
    /// </summary>
    public class StartupUserDto
    {
        /// <summary>
        /// Gets or sets the username.
        /// </summary>
        public string Name { get; set; }

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