ImageCollageOptions.cs 807 B

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