You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
419 B
19 lines
419 B
5 years ago
|
namespace Jellyfin.Api.Models.StartupDtos
|
||
5 years ago
|
{
|
||
5 years ago
|
/// <summary>
|
||
|
/// The startup user DTO.
|
||
|
/// </summary>
|
||
5 years ago
|
public class StartupUserDto
|
||
5 years ago
|
{
|
||
5 years ago
|
/// <summary>
|
||
|
/// Gets or sets the username.
|
||
|
/// </summary>
|
||
5 years ago
|
public string Name { get; set; }
|
||
5 years ago
|
|
||
|
/// <summary>
|
||
|
/// Gets or sets the user's password.
|
||
|
/// </summary>
|
||
5 years ago
|
public string Password { get; set; }
|
||
|
}
|
||
|
}
|