ImageCollageOptions.cs 826 B

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