mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-11-11 17:17:01 -05:00
15 lines
260 B
C#
15 lines
260 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MediaBrowser.Common.Net
|
|
{
|
|
public class StaticResult
|
|
{
|
|
public Stream Stream { get; set; }
|
|
}
|
|
}
|