fixes #518 - Add api param for watched indicator on images

This commit is contained in:
Luke Pulverenti
2013-09-19 13:45:48 -04:00
parent 9e91e3b2dd
commit c233f2190c
8 changed files with 96 additions and 10 deletions

View File

@@ -33,6 +33,8 @@ namespace MediaBrowser.Controller.Drawing
public List<IImageEnhancer> Enhancers { get; set; }
public ImageOutputFormat OutputFormat { get; set; }
public ImageOverlay Indicator { get; set; }
}
public enum ImageOutputFormat
@@ -43,4 +45,10 @@ namespace MediaBrowser.Controller.Drawing
Jpg,
Png
}
public enum ImageOverlay
{
None,
Watched
}
}