2017-05-14 22:28:32 -04:00
|
|
|
|
using MediaBrowser.Model.Serialization;
|
2014-08-29 00:06:30 -04:00
|
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Entities
|
|
|
|
|
|
{
|
2015-12-12 16:16:33 -05:00
|
|
|
|
public class PhotoAlbum : Folder
|
2014-08-29 00:06:30 -04:00
|
|
|
|
{
|
2014-10-19 23:04:45 -04:00
|
|
|
|
[IgnoreDataMember]
|
|
|
|
|
|
public override bool AlwaysScanInternalMetadataPath
|
|
|
|
|
|
{
|
|
|
|
|
|
get
|
|
|
|
|
|
{
|
|
|
|
|
|
return true;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2014-12-20 01:06:27 -05:00
|
|
|
|
|
2016-10-11 02:46:59 -04:00
|
|
|
|
[IgnoreDataMember]
|
|
|
|
|
|
public override bool SupportsPlayedStatus
|
|
|
|
|
|
{
|
|
|
|
|
|
get
|
|
|
|
|
|
{
|
|
|
|
|
|
return false;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2017-06-29 15:10:58 -04:00
|
|
|
|
|
|
|
|
|
|
[IgnoreDataMember]
|
|
|
|
|
|
public override bool SupportsInheritedParentImages
|
|
|
|
|
|
{
|
|
|
|
|
|
get
|
|
|
|
|
|
{
|
|
|
|
|
|
return false;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2017-09-22 16:33:01 -04:00
|
|
|
|
|
|
|
|
|
|
public override double? GetDefaultPrimaryImageAspectRatio()
|
|
|
|
|
|
{
|
|
|
|
|
|
return 1;
|
|
|
|
|
|
}
|
2014-08-29 00:06:30 -04:00
|
|
|
|
}
|
|
|
|
|
|
}
|