mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-11-15 02:53:01 -05:00
19 lines
332 B
C#
19 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
|
|
}
|
|
}
|