mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-26 18:54:48 +03:00
14 lines
297 B
C#
14 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
|
|
}
|
|
}
|