blob: 56ae2cbbdc9f13903e21e95247175832bf45df27 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
using System;
namespace MediaBrowser.Controller.Library
{
[Flags]
public enum ItemUpdateType
{
Unspecified = 1,
MetadataImport = 2,
ImageUpdate = 4,
MetadataEdit = 16
}
}
|