13 lines
267 B
C#
13 lines
267 B
C#
namespace MediaBrowser.Controller.Drawing;
|
|
|
|
/// <summary>
|
|
/// Which generated image type the <see cref="IImageGenerator"/> supports.
|
|
/// </summary>
|
|
public enum GeneratedImageType
|
|
{
|
|
/// <summary>
|
|
/// The splashscreen.
|
|
/// </summary>
|
|
Splashscreen = 0
|
|
}
|