jellyfin/MediaBrowser.Model/Reflection/IAssemblyInfo.cs
2016-11-04 04:31:05 -04:00

11 lines
250 B
C#

using System;
using System.IO;
namespace MediaBrowser.Model.Reflection
{
public interface IAssemblyInfo
{
Stream GetManifestResourceStream(Type type, string resource);
string[] GetManifestResourceNames(Type type);
}
}