| 1234567891011121314151617181920212223242526272829303132 | 
							- using MediaBrowser.Controller.Entities;
 
- namespace MediaBrowser.Controller.Providers
 
- {
 
-     /// <summary>
 
-     /// Marker interface
 
-     /// </summary>
 
-     public interface IMetadataProvider
 
-     {
 
-         /// <summary>
 
-         /// Gets the name.
 
-         /// </summary>
 
-         /// <value>The name.</value>
 
-         string Name { get; }
 
-     }
 
-     public interface IMetadataProvider<TItemType> : IMetadataProvider
 
-            where TItemType : IHasMetadata
 
-     {
 
-     }
 
-     public interface IHasOrder
 
-     {
 
-         int Order { get; }
 
-     }
 
-     public class MetadataResult<T>
 
-     {
 
-         public bool HasMetadata { get; set; }
 
-         public T Item { get; set; }
 
-     }
 
- }
 
 
  |