Files
jellyfin-jellyfin-1/MediaBrowser.Controller/Entities/PhotoAlbum.cs

20 lines
471 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-27 18:27:57 -05:00
namespace MediaBrowser.Controller.Entities
{
2024-10-10 18:01:14 +00:00
[Common.RequiresSourceSerialisation]
2018-12-27 18:27:57 -05:00
public class PhotoAlbum : Folder
{
2019-10-15 17:49:49 +02:00
[JsonIgnore]
public override bool AlwaysScanInternalMetadataPath => true;
2018-12-27 18:27:57 -05:00
2019-10-15 17:49:49 +02:00
[JsonIgnore]
public override bool SupportsPlayedStatus => false;
2018-12-27 18:27:57 -05:00
2019-10-15 17:49:49 +02:00
[JsonIgnore]
public override bool SupportsInheritedParentImages => false;
2018-12-27 18:27:57 -05:00
}
}