jellyfin-server/MediaBrowser.Controller/Entities/PhotoAlbum.cs

17 lines
398 B
C#
Raw Normal View History

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