jellyfin/MediaBrowser.Controller/Entities/PhotoAlbum.cs

19 lines
430 B
C#
Raw Normal View History

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