2020-08-22 12:56:24 -07:00
|
|
|
#pragma warning disable CS1591
|
|
|
|
|
2019-10-15 08:49:49 -07:00
|
|
|
using System.Text.Json.Serialization;
|
2018-12-27 16:27:57 -07:00
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Entities
|
|
|
|
{
|
|
|
|
public class PhotoAlbum : Folder
|
|
|
|
{
|
2019-10-15 08:49:49 -07:00
|
|
|
[JsonIgnore]
|
2019-01-13 13:31:14 -07:00
|
|
|
public override bool AlwaysScanInternalMetadataPath => true;
|
2018-12-27 16:27:57 -07:00
|
|
|
|
2019-10-15 08:49:49 -07:00
|
|
|
[JsonIgnore]
|
2019-01-13 13:31:14 -07:00
|
|
|
public override bool SupportsPlayedStatus => false;
|
2018-12-27 16:27:57 -07:00
|
|
|
|
2019-10-15 08:49:49 -07:00
|
|
|
[JsonIgnore]
|
2019-01-13 13:31:14 -07:00
|
|
|
public override bool SupportsInheritedParentImages => false;
|
2018-12-27 16:27:57 -07:00
|
|
|
}
|
|
|
|
}
|