jellyfin/MediaBrowser.Controller/Entities/AudioBook.cs

65 lines
1.4 KiB
C#
Raw Normal View History

#nullable disable
2021-07-23 19:36:27 -04:00
#pragma warning disable CA1724, CS1591
using System;
2019-10-15 11:49:49 -04:00
using System.Text.Json.Serialization;
2020-05-12 22:10:35 -04:00
using Jellyfin.Data.Enums;
2018-12-27 18:27:57 -05:00
using MediaBrowser.Controller.Providers;
namespace MediaBrowser.Controller.Entities
{
public class AudioBook : Audio.Audio, IHasSeries, IHasLookupInfo<SongInfo>
{
2019-10-15 11:49:49 -04:00
[JsonIgnore]
public override bool SupportsPositionTicksResume => true;
2018-12-27 18:27:57 -05:00
2019-10-15 11:49:49 -04:00
[JsonIgnore]
public override bool SupportsPlayedStatus => true;
2018-12-27 18:27:57 -05:00
2019-10-15 11:49:49 -04:00
[JsonIgnore]
2018-12-27 18:27:57 -05:00
public string SeriesPresentationUniqueKey { get; set; }
2019-10-15 11:49:49 -04:00
[JsonIgnore]
2018-12-27 18:27:57 -05:00
public string SeriesName { get; set; }
2019-10-15 11:49:49 -04:00
[JsonIgnore]
2018-12-27 18:27:57 -05:00
public Guid SeriesId { get; set; }
public string FindSeriesSortName()
{
return SeriesName;
}
2020-06-15 17:43:52 -04:00
2018-12-27 18:27:57 -05:00
public string FindSeriesName()
{
return SeriesName;
}
2020-06-15 17:43:52 -04:00
2018-12-27 18:27:57 -05: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;
}
}
}