blob: 4cd0c8b668e6ffbc7161f2b929cd8e60dca87222 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
using MediaBrowser.Model.Serialization;
namespace MediaBrowser.Controller.Entities
{
public class PhotoAlbum : Folder
{
[IgnoreDataMember]
public override bool AlwaysScanInternalMetadataPath => true;
[IgnoreDataMember]
public override bool SupportsPlayedStatus => false;
[IgnoreDataMember]
public override bool SupportsInheritedParentImages => false;
}
}
|