mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-17 02:49:05 -07:00
14 lines
338 B
C#
14 lines
338 B
C#
|
using System;
|
|||
|
using System.IO;
|
|||
|
|
|||
|
namespace MediaBrowser.ApiInteraction
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Since ServiceStack Json is not portable, we need to abstract required json functions into an interface
|
|||
|
/// </summary>
|
|||
|
public interface IJsonSerializer
|
|||
|
{
|
|||
|
T DeserializeFromStream<T>(Stream stream);
|
|||
|
}
|
|||
|
}
|