2
0

PhotoAlbum.cs 471 B

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