mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-06-02 05:48:47 +01:00
Only fire metadata savers when appropriate
This commit is contained in:
13
MediaBrowser.Controller/Library/ItemUpdateType.cs
Normal file
13
MediaBrowser.Controller/Library/ItemUpdateType.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
using System;
|
||||
|
||||
namespace MediaBrowser.Controller.Library
|
||||
{
|
||||
[Flags]
|
||||
public enum ItemUpdateType
|
||||
{
|
||||
Unspecified = 1,
|
||||
MetadataImport = 2,
|
||||
ImageUpdate = 4,
|
||||
MetadataEdit = 16
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user