ImageCollageOptions.cs 874 B

1234567891011121314151617181920212223242526272829303132333435
  1. #nullable disable
  2. using System.Collections.Generic;
  3. #pragma warning disable CS1591
  4. namespace MediaBrowser.Controller.Drawing
  5. {
  6. public class ImageCollageOptions
  7. {
  8. /// <summary>
  9. /// Gets or sets the input paths.
  10. /// </summary>
  11. /// <value>The input paths.</value>
  12. public IReadOnlyList<string> InputPaths { get; set; }
  13. /// <summary>
  14. /// Gets or sets the output path.
  15. /// </summary>
  16. /// <value>The output path.</value>
  17. public string OutputPath { get; set; }
  18. /// <summary>
  19. /// Gets or sets the width.
  20. /// </summary>
  21. /// <value>The width.</value>
  22. public int Width { get; set; }
  23. /// <summary>
  24. /// Gets or sets the height.
  25. /// </summary>
  26. /// <value>The height.</value>
  27. public int Height { get; set; }
  28. }
  29. }