mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-30 08:53:17 +01:00
11 lines
239 B
C#
11 lines
239 B
C#
using System.IO;
|
|
|
|
namespace MediaBrowser.Model.IO
|
|
{
|
|
public interface IMemoryStreamProvider
|
|
{
|
|
MemoryStream CreateNew();
|
|
MemoryStream CreateNew(int capacity);
|
|
MemoryStream CreateNew(byte[] buffer);
|
|
}
|
|
}
|