jellyfin/MediaBrowser.Controller/MediaEncoding/ImageEncodingOptions.cs

21 lines
427 B
C#
Raw Normal View History

2014-03-28 00:01:42 +01:00

namespace MediaBrowser.Controller.MediaEncoding
{
public class ImageEncodingOptions
{
public string InputPath { get; set; }
public int? Width { get; set; }
public int? Height { get; set; }
public int? MaxWidth { get; set; }
public int? MaxHeight { get; set; }
2014-03-28 04:32:43 +01:00
public int? Quality { get; set; }
2014-03-28 00:01:42 +01:00
public string Format { get; set; }
}
}