mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-20 21:33:31 +01:00
17 lines
363 B
C#
17 lines
363 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; }
|
|
}
|