mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-21 04:26:04 +01:00
18 lines
332 B
C#
18 lines
332 B
C#
|
|
namespace MediaBrowser.Model.Drawing
|
|
{
|
|
/// <summary>
|
|
/// Enum ImageOverlay
|
|
/// </summary>
|
|
public enum ImageOverlay
|
|
{
|
|
/// <summary>
|
|
/// The watched
|
|
/// </summary>
|
|
Played,
|
|
/// <summary>
|
|
/// The percent played
|
|
/// </summary>
|
|
PercentPlayed
|
|
}
|
|
}
|