mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-16 10:29:01 -07:00
19 lines
421 B
C#
19 lines
421 B
C#
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; }
|
|
}
|
|
}
|