jellyfin/MediaBrowser.Controller/Entities/AudioBook.cs

65 lines
1.4 KiB
C#
Raw Normal View History

#nullable disable
2021-07-24 01:36:27 +02:00
#pragma warning disable CA1724, CS1591
using System;
2019-10-15 17:49:49 +02:00
using System.Text.Json.Serialization;
2020-05-13 04:10:35 +02:00
using Jellyfin.Data.Enums;
2018-12-28 00:27:57 +01:00
using MediaBrowser.Controller.Providers;
namespace MediaBrowser.Controller.Entities
{
public class AudioBook : Audio.Audio, IHasSeries, IHasLookupInfo<SongInfo>
{
2019-10-15 17:49:49 +02:00
[JsonIgnore]
public override bool SupportsPositionTicksResume => true;
2018-12-28 00:27:57 +01:00
2019-10-15 17:49:49 +02:00
[JsonIgnore]
public override bool SupportsPlayedStatus => true;
2018-12-28 00:27:57 +01:00
2019-10-15 17:49:49 +02:00
[JsonIgnore]
2018-12-28 00:27:57 +01:00
public string SeriesPresentationUniqueKey { get; set; }
2019-10-15 17:49:49 +02:00
[JsonIgnore]
2018-12-28 00:27:57 +01:00
public string SeriesName { get; set; }
2019-10-15 17:49:49 +02:00
[JsonIgnore]
2018-12-28 00:27:57 +01:00
public Guid SeriesId { get; set; }
public string FindSeriesSortName()
{
return SeriesName;
}
2020-06-15 23:43:52 +02:00
2018-12-28 00:27:57 +01:00
public string FindSeriesName()
{
return SeriesName;
}
2020-06-15 23:43:52 +02:00
2018-12-28 00:27:57 +01:00
public string FindSeriesPresentationUniqueKey()
{
return SeriesPresentationUniqueKey;
}
public override double GetDefaultPrimaryImageAspectRatio()
{
return 0;
}
public Guid FindSeriesId()
{
return SeriesId;
}
public override bool CanDownload()
{
return IsFileProtocol;
}
public override UnratedItem GetBlockUnratedType()
{
return UnratedItem.Book;
}
}
}