jellyfin/MediaBrowser.Controller/Entities/PhotoAlbum.cs

19 lines
430 B
C#
Raw Normal View History

#pragma warning disable CS1591
2019-10-15 17:49:49 +02:00
using System.Text.Json.Serialization;
2018-12-28 00:27:57 +01:00
namespace MediaBrowser.Controller.Entities
{
public class PhotoAlbum : Folder
{
2019-10-15 17:49:49 +02:00
[JsonIgnore]
public override bool AlwaysScanInternalMetadataPath => true;
2018-12-28 00:27:57 +01:00
2019-10-15 17:49:49 +02:00
[JsonIgnore]
public override bool SupportsPlayedStatus => false;
2018-12-28 00:27:57 +01:00
2019-10-15 17:49:49 +02:00
[JsonIgnore]
public override bool SupportsInheritedParentImages => false;
2018-12-28 00:27:57 +01:00
}
}