aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Api/Models/StartupDtos/StartupUserDto.cs
blob: e4c97354814017188ba0b1241b0cc542b4354cdf (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; }
    }
}