mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-02-16 01:55:26 +01:00
13 lines
297 B
C#
13 lines
297 B
C#
namespace MediaBrowser.Controller.Drawing
|
|
{
|
|
/// <summary>
|
|
/// Which generated images an <see cref="IImageGenerator"/> supports.
|
|
/// </summary>
|
|
public enum GeneratedImages
|
|
{
|
|
/// <summary>
|
|
/// The splashscreen.
|
|
/// </summary>
|
|
Splashscreen
|
|
}
|
|
}
|