mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-04 03:27:21 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			596 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			596 B
		
	
	
	
		
			C#
		
	
	
	
	
	
namespace Jellyfin.Api.Models.UserDtos
 | 
						|
{
 | 
						|
    /// <summary>
 | 
						|
    /// The authenticate user by name request body.
 | 
						|
    /// </summary>
 | 
						|
    public class AuthenticateUserByName
 | 
						|
    {
 | 
						|
        /// <summary>
 | 
						|
        /// Gets or sets the username.
 | 
						|
        /// </summary>
 | 
						|
        public string? Username { get; set; }
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// Gets or sets the plain text password.
 | 
						|
        /// </summary>
 | 
						|
        public string? Pw { get; set; }
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// Gets or sets the sha1-hashed password.
 | 
						|
        /// </summary>
 | 
						|
        public string? Password { get; set; }
 | 
						|
    }
 | 
						|
}
 |