mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-23 09:14:45 +03: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
|
|
}
|
|
}
|