You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
445 B
23 lines
445 B
using MediaBrowser.Controller.Drawing;
|
|
using System;
|
|
using System.IO;
|
|
|
|
namespace MediaBrowser.Controller.Dlna
|
|
{
|
|
public class DlnaIconResponse : IDisposable
|
|
{
|
|
public Stream Stream { get; set; }
|
|
|
|
public ImageFormat Format { get; set; }
|
|
|
|
public void Dispose()
|
|
{
|
|
if (Stream != null)
|
|
{
|
|
Stream.Dispose();
|
|
Stream = null;
|
|
}
|
|
}
|
|
}
|
|
}
|