ImageCollageOptions.cs 772 B

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