diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-09-19 15:46:19 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-09-19 15:46:19 -0400 |
| commit | 088df67fcadd75d0da40f4e252a6d6bcc47c7274 (patch) | |
| tree | 129d2aacb413596ef3689ae106c00d64e7e256b8 /MediaBrowser.Model/Drawing/ImageOutputFormat.cs | |
| parent | 06a7eb78ee4e8df3e312eab44adbe58995b6c289 (diff) | |
moved new image options to the model
Diffstat (limited to 'MediaBrowser.Model/Drawing/ImageOutputFormat.cs')
| -rw-r--r-- | MediaBrowser.Model/Drawing/ImageOutputFormat.cs | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Drawing/ImageOutputFormat.cs b/MediaBrowser.Model/Drawing/ImageOutputFormat.cs new file mode 100644 index 000000000..6cbe75a7a --- /dev/null +++ b/MediaBrowser.Model/Drawing/ImageOutputFormat.cs @@ -0,0 +1,30 @@ + +namespace MediaBrowser.Model.Drawing +{ + /// <summary> + /// Enum ImageOutputFormat + /// </summary> + public enum ImageOutputFormat + { + /// <summary> + /// The original + /// </summary> + Original, + /// <summary> + /// The BMP + /// </summary> + Bmp, + /// <summary> + /// The GIF + /// </summary> + Gif, + /// <summary> + /// The JPG + /// </summary> + Jpg, + /// <summary> + /// The PNG + /// </summary> + Png + } +} |
