aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/MediaEncoding/ImageEncodingOptions.cs
blob: a8d1e5a0f114bbf8252ed9a58bf900310afcb511 (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; }
    }
}