jellyfin-server/MediaBrowser.Model/Reflection/IAssemblyInfo.cs

12 lines
250 B
C#
Raw Normal View History

2016-10-26 06:01:42 +00:00
using System;
using System.IO;
namespace MediaBrowser.Model.Reflection
{
public interface IAssemblyInfo
{
Stream GetManifestResourceStream(Type type, string resource);
2016-11-04 08:31:05 +00:00
string[] GetManifestResourceNames(Type type);
2016-10-26 06:01:42 +00:00
}
}