aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Api/Models/StartupDtos/StartupUserDto.cs
blob: 3a9348037a2b181e64636a96b340ed427974d8cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
namespace Jellyfin.Api.Models.StartupDtos
{
    /// <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; }
    }
}