aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Drawing/ImageOverlay.cs
blob: 9b6400f1ccd27fea3393dca2b4da862165e58b62 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
namespace MediaBrowser.Model.Drawing
{
    /// <summary>
    /// Enum ImageOverlay
    /// </summary>
    public enum ImageOverlay
    {
        /// <summary>
        /// The none
        /// </summary>
        None,
        /// <summary>
        /// The watched
        /// </summary>
        Watched
    }
}