mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-10-31 02:27:18 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			371 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			371 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using System.ComponentModel.DataAnnotations;
 | |
| 
 | |
| namespace Jellyfin.Api.Models.UserDtos
 | |
| {
 | |
|     /// <summary>
 | |
|     /// The quick connect request body.
 | |
|     /// </summary>
 | |
|     public class QuickConnectDto
 | |
|     {
 | |
|         /// <summary>
 | |
|         /// Gets or sets the quick connect token.
 | |
|         /// </summary>
 | |
|         [Required]
 | |
|         public string? Token { get; set; }
 | |
|     }
 | |
| }
 |