moved new image options to the model

This commit is contained in:
Luke Pulverenti
2013-09-19 15:46:19 -04:00
parent 06a7eb78ee
commit 088df67fca
9 changed files with 74 additions and 17 deletions

View File

@@ -0,0 +1,18 @@
namespace MediaBrowser.Model.Drawing
{
/// <summary>
/// Enum ImageOverlay
/// </summary>
public enum ImageOverlay
{
/// <summary>
/// The none
/// </summary>
None,
/// <summary>
/// The watched
/// </summary>
Watched
}
}