#nullable disable
namespace Jellyfin.Api.Models.StartupDtos
{
///
/// The startup user DTO.
///
public class StartupUserDto
{
///
/// Gets or sets the username.
///
public string Name { get; set; }
///
/// Gets or sets the user's password.
///
public string Password { get; set; }
}
}