blob: f473bbcef4cd2a93ccb1e93d40ec096fabd74253 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
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; }
}
|