using System;
using System.IO;
namespace MediaBrowser.ApiInteraction
{
    /// 
    /// Since ServiceStack Json is not portable, we need to abstract required json functions into an interface
    /// 
    public interface IJsonSerializer
    {
        T DeserializeFromStream(Stream stream);
    }
}