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
|
|
}
|
|
}
|