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