aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Entities/PhotoAlbum.cs
blob: b86f1ac2aef86eaf0fca9914c4d4e9a5fc53a14f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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;
    }
}