mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-16 10:29:01 -07: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
|
|
}
|
|
}
|