aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/MediaEncoding/ImageEncodingOptions.cs
blob: e7b4c8c15c8d44ea2c0af3a6d82b5599f4cbb341 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#pragma warning disable CS1591

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