PhotoAlbum.cs 398 B

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