namespace MediaBrowser.Controller.Drawing { public class ImageCollageOptions { /// /// Gets or sets the input paths. /// /// The input paths. public string[] InputPaths { get; set; } /// /// Gets or sets the output path. /// /// The output path. public string OutputPath { get; set; } /// /// Gets or sets the width. /// /// The width. public int Width { get; set; } /// /// Gets or sets the height. /// /// The height. public int Height { get; set; } } }