mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-23 09:14:45 +03:00
Moved the http server to it's own assembly. added comments and made other minor re-organizations.
This commit is contained in:
parent
6fbd5cf464
commit
80b3ad7bd2
11
MediaBrowser.Net/Handlers/BaseJsonHandler.cs
Normal file
11
MediaBrowser.Net/Handlers/BaseJsonHandler.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
|
||||
namespace MediaBrowser.Net.Handlers
|
||||
{
|
||||
public abstract class BaseJsonHandler : BaseHandler
|
||||
{
|
||||
public override string ContentType
|
||||
{
|
||||
get { return "application/json"; }
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user