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