mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-06-23 15:30:56 -04:00
19 lines
314 B
C#
19 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
|
|
}
|
|
}
|