38f96af079
Refs #575
20 lines
407 B
C#
20 lines
407 B
C#
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; }
|
|
|
|
public int? Quality { get; set; }
|
|
|
|
public string Format { get; set; }
|
|
}
|
|
}
|