jellyfin/MediaBrowser.Controller/Entities/PhotoAlbum.cs
2019-10-15 17:49:49 +02:00

17 lines
398 B
C#

using System.Text.Json.Serialization;
namespace MediaBrowser.Controller.Entities
{
public class PhotoAlbum : Folder
{
[JsonIgnore]
public override bool AlwaysScanInternalMetadataPath => true;
[JsonIgnore]
public override bool SupportsPlayedStatus => false;
[JsonIgnore]
public override bool SupportsInheritedParentImages => false;
}
}