mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-10-31 10:37:22 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			438 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			438 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using MediaBrowser.Model.Serialization;
 | |
| 
 | |
| namespace MediaBrowser.Controller.Entities.Audio
 | |
| {
 | |
|     public class AudioPodcast : Audio
 | |
|     {
 | |
|         [IgnoreDataMember]
 | |
|         public override bool SupportsPositionTicksResume
 | |
|         {
 | |
|             get
 | |
|             {
 | |
|                 return true;
 | |
|             }
 | |
|         }
 | |
| 
 | |
|         public override double? GetDefaultPrimaryImageAspectRatio()
 | |
|         {
 | |
|             return null;
 | |
|         }
 | |
|     }
 | |
| }
 |