jellyfin/MediaBrowser.Common/Net/StaticResult.cs
2013-02-20 20:33:05 -05:00

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; }
}
}