Files
jellyfin-jellyfin-1/MediaBrowser.Controller/Entities/PhotoAlbum.cs

26 lines
492 B
C#
Raw Normal View History

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;
}
}
2014-08-29 00:06:30 -04:00
}
}