mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-10-31 02:27:18 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			420 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			420 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using ServiceStack;
 | |
| 
 | |
| namespace MediaBrowser.Server.Implementations.HttpServer
 | |
| {
 | |
|     /// <summary>
 | |
|     /// Class GetDashboardResource
 | |
|     /// </summary>
 | |
|     [Route("/swagger-ui/{ResourceName*}", "GET")]
 | |
|     public class GetSwaggerResource
 | |
|     {
 | |
|         /// <summary>
 | |
|         /// Gets or sets the name.
 | |
|         /// </summary>
 | |
|         /// <value>The name.</value>
 | |
|         public string ResourceName { get; set; }
 | |
|     }
 | |
| } |