22 lines
507 B
C#
22 lines
507 B
C#
// <copyright file="StartupUserDto.cs" company="PlaceholderCompany">
|
|
// Copyright (c) PlaceholderCompany. All rights reserved.
|
|
// </copyright>
|
|
|
|
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; }
|
|
}
|