jellyfin/MediaBrowser.Model/Reflection/IAssemblyInfo.cs

11 lines
196 B
C#
Raw Normal View History

2016-10-25 23:01:42 -07:00
using System;
using System.IO;
namespace MediaBrowser.Model.Reflection
{
public interface IAssemblyInfo
{
Stream GetManifestResourceStream(Type type, string resource);
}
}