aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/MediaEncoding/ImageEncodingOptions.cs
blob: 2d6acc1a0df4cac9c47c00cdf8d4cedf4eb1cbd5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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; }
    }
}