ItemUpdateType.cs 223 B

12345678910111213
  1. using System;
  2. namespace MediaBrowser.Controller.Library
  3. {
  4. [Flags]
  5. public enum ItemUpdateType
  6. {
  7. Unspecified = 1,
  8. MetadataImport = 2,
  9. ImageUpdate = 4,
  10. MetadataEdit = 16
  11. }
  12. }