diff options
| author | Cody Robibero <cody@robibe.ro> | 2022-01-10 08:25:46 -0700 |
|---|---|---|
| committer | Cody Robibero <cody@robibe.ro> | 2022-01-10 08:26:30 -0700 |
| commit | ecb73168b34e3d58dff186b6d90fb4bdd192e24a (patch) | |
| tree | a973f42d5e77239077e967eef28105a30ada3fe3 /MediaBrowser.Controller/Drawing/IImageGenerator.cs | |
| parent | 360fd70fc74325008b031c9a1155b9b76724866d (diff) | |
Suggestions from review
Diffstat (limited to 'MediaBrowser.Controller/Drawing/IImageGenerator.cs')
| -rw-r--r-- | MediaBrowser.Controller/Drawing/IImageGenerator.cs | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/MediaBrowser.Controller/Drawing/IImageGenerator.cs b/MediaBrowser.Controller/Drawing/IImageGenerator.cs deleted file mode 100644 index 773db02cb..000000000 --- a/MediaBrowser.Controller/Drawing/IImageGenerator.cs +++ /dev/null @@ -1,22 +0,0 @@ -using System.Collections.Generic; - -namespace MediaBrowser.Controller.Drawing; - -/// <summary> -/// Interface for an image generator. -/// </summary> -public interface IImageGenerator -{ - /// <summary> - /// Gets the supported generated images of the image generator. - /// </summary> - /// <returns>The supported generated image types.</returns> - IReadOnlyList<GeneratedImageType> GetSupportedImages(); - - /// <summary> - /// Generates a splashscreen. - /// </summary> - /// <param name="imageTypeType">The image to generate.</param> - /// <param name="outputPath">The path where the splashscreen should be saved.</param> - void Generate(GeneratedImageType imageTypeType, string outputPath); -} |
