mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-03 19:17:24 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			419 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			419 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; }
 | 
						|
    }
 | 
						|
}
 |