mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-21 00:05:26 +03:00
12 lines
233 B
C#
12 lines
233 B
C#
|
|
namespace MediaBrowser.Net.Handlers
|
|
{
|
|
public abstract class BaseJsonHandler : BaseHandler
|
|
{
|
|
public override string ContentType
|
|
{
|
|
get { return "application/json"; }
|
|
}
|
|
}
|
|
}
|