jellyfin/MediaBrowser.Controller/Dlna/DlnaIconResponse.cs
2014-04-16 01:08:12 -04:00

23 lines
445 B
C#

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