PhotoAlbum.cs 430 B

123456789101112131415161718
  1. #pragma warning disable CS1591
  2. using System.Text.Json.Serialization;
  3. namespace MediaBrowser.Controller.Entities
  4. {
  5. public class PhotoAlbum : Folder
  6. {
  7. [JsonIgnore]
  8. public override bool AlwaysScanInternalMetadataPath => true;
  9. [JsonIgnore]
  10. public override bool SupportsPlayedStatus => false;
  11. [JsonIgnore]
  12. public override bool SupportsInheritedParentImages => false;
  13. }
  14. }