mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-22 00:35:26 +03:00
14 lines
223 B
C#
14 lines
223 B
C#
|
|
using System;
|
|||
|
|
|
|||
|
|
namespace MediaBrowser.Controller.Library
|
|||
|
|
{
|
|||
|
|
[Flags]
|
|||
|
|
public enum ItemUpdateType
|
|||
|
|
{
|
|||
|
|
Unspecified = 1,
|
|||
|
|
MetadataImport = 2,
|
|||
|
|
ImageUpdate = 4,
|
|||
|
|
MetadataEdit = 16
|
|||
|
|
}
|
|||
|
|
}
|