mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-03 19:17:24 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			477 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			477 B
		
	
	
	
		
			C#
		
	
	
	
	
	
using System.Net.Mime;
 | 
						|
using Jellyfin.Extensions.Json;
 | 
						|
using Microsoft.AspNetCore.Mvc;
 | 
						|
 | 
						|
namespace Jellyfin.Api
 | 
						|
{
 | 
						|
    /// <summary>
 | 
						|
    /// Base api controller for the API setting a default route.
 | 
						|
    /// </summary>
 | 
						|
    [ApiController]
 | 
						|
    [Route("[controller]")]
 | 
						|
    [Produces(
 | 
						|
        MediaTypeNames.Application.Json,
 | 
						|
        JsonDefaults.CamelCaseMediaType,
 | 
						|
        JsonDefaults.PascalCaseMediaType)]
 | 
						|
    public class BaseJellyfinApiController : ControllerBase
 | 
						|
    {
 | 
						|
    }
 | 
						|
}
 |