| 123456789101112131415161718192021222324252627282930313233 | 
							- using MediaBrowser.Model.Configuration;
 
- using MediaBrowser.Model.Users;
 
- using System.Linq;
 
- using System.Runtime.Serialization;
 
- namespace MediaBrowser.Controller.Entities
 
- {
 
-     public class PhotoAlbum : Folder
 
-     {
 
-         [IgnoreDataMember]
 
-         public override bool SupportsLocalMetadata
 
-         {
 
-             get
 
-             {
 
-                 return false;
 
-             }
 
-         }
 
-         [IgnoreDataMember]
 
-         public override bool AlwaysScanInternalMetadataPath
 
-         {
 
-             get
 
-             {
 
-                 return true;
 
-             }
 
-         }
 
-         protected override bool GetBlockUnratedValue(UserPolicy config)
 
-         {
 
-             return config.BlockUnratedItems.Contains(UnratedItem.Other);
 
-         }
 
-     }
 
- }
 
 
  |