| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 | 
							- using System;
 
- using MediaBrowser.Controller.Providers;
 
- using MediaBrowser.Model.Configuration;
 
- using MediaBrowser.Model.Serialization;
 
- using MediaBrowser.Model.Entities;
 
- namespace MediaBrowser.Controller.Entities
 
- {
 
-     public class AudioBook : Audio.Audio, IHasSeries, IHasLookupInfo<SongInfo>
 
-     {
 
-         [IgnoreDataMember]
 
-         public override bool SupportsPositionTicksResume
 
-         {
 
-             get
 
-             {
 
-                 return true;
 
-             }
 
-         }
 
-         [IgnoreDataMember]
 
-         public override bool SupportsPlayedStatus
 
-         {
 
-             get
 
-             {
 
-                 return true;
 
-             }
 
-         }
 
-         [IgnoreDataMember]
 
-         public string SeriesPresentationUniqueKey { get; set; }
 
-         [IgnoreDataMember]
 
-         public string SeriesName { get; set; }
 
-         [IgnoreDataMember]
 
-         public Guid? SeriesId { get; set; }
 
-         public string FindSeriesSortName()
 
-         {
 
-             return SeriesName;
 
-         }
 
-         public string FindSeriesName()
 
-         {
 
-             return SeriesName;
 
-         }
 
-         public string FindSeriesPresentationUniqueKey()
 
-         {
 
-             return SeriesPresentationUniqueKey;
 
-         }
 
-         public override double? GetDefaultPrimaryImageAspectRatio()
 
-         {
 
-             return null;
 
-         }
 
-         public Guid? FindSeriesId()
 
-         {
 
-             return SeriesId;
 
-         }
 
-         public override bool CanDownload()
 
-         {
 
-             var locationType = LocationType;
 
-             return locationType != LocationType.Remote &&
 
-                    locationType != LocationType.Virtual;
 
-         }
 
-         public override UnratedItem GetBlockUnratedType()
 
-         {
 
-             return UnratedItem.Book;
 
-         }
 
-     }
 
- }
 
 
  |