aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Library/ItemUpdateType.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Controller/Library/ItemUpdateType.cs')
-rw-r--r--MediaBrowser.Controller/Library/ItemUpdateType.cs14
1 files changed, 14 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Library/ItemUpdateType.cs b/MediaBrowser.Controller/Library/ItemUpdateType.cs
new file mode 100644
index 000000000..cf6263356
--- /dev/null
+++ b/MediaBrowser.Controller/Library/ItemUpdateType.cs
@@ -0,0 +1,14 @@
+using System;
+
+namespace MediaBrowser.Controller.Library
+{
+ [Flags]
+ public enum ItemUpdateType
+ {
+ None = 1,
+ MetadataImport = 2,
+ ImageUpdate = 4,
+ MetadataDownload = 8,
+ MetadataEdit = 16
+ }
+}