mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-21 07:59:16 +01:00
18 lines
314 B
C#
18 lines
314 B
C#
|
|
namespace MediaBrowser.Model.Drawing
|
|
{
|
|
/// <summary>
|
|
/// Enum ImageOverlay
|
|
/// </summary>
|
|
public enum ImageOverlay
|
|
{
|
|
/// <summary>
|
|
/// The none
|
|
/// </summary>
|
|
None,
|
|
/// <summary>
|
|
/// The watched
|
|
/// </summary>
|
|
Watched
|
|
}
|
|
}
|