2021-05-06 22:39:20 +00:00
|
|
|
#nullable disable
|
|
|
|
|
2021-05-11 11:55:46 +00:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
2020-08-22 19:56:24 +00:00
|
|
|
#pragma warning disable CS1591
|
|
|
|
|
2018-12-27 23:27:57 +00:00
|
|
|
namespace MediaBrowser.Controller.Drawing
|
|
|
|
{
|
|
|
|
public class ImageCollageOptions
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the input paths.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The input paths.</value>
|
2021-05-11 11:55:46 +00:00
|
|
|
public IReadOnlyList<string> InputPaths { get; set; }
|
2020-08-22 19:56:24 +00:00
|
|
|
|
2018-12-27 23:27:57 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the output path.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The output path.</value>
|
|
|
|
public string OutputPath { get; set; }
|
2020-08-22 19:56:24 +00:00
|
|
|
|
2018-12-27 23:27:57 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the width.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The width.</value>
|
|
|
|
public int Width { get; set; }
|
2020-08-22 19:56:24 +00:00
|
|
|
|
2018-12-27 23:27:57 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the height.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The height.</value>
|
|
|
|
public int Height { get; set; }
|
|
|
|
}
|
|
|
|
}
|