mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-10-30 18:22:48 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			524 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			524 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| namespace Jellyfin.Api.Attributes
 | |
| {
 | |
|     /// <summary>
 | |
|     /// Produces file attribute of "image/*".
 | |
|     /// </summary>
 | |
|     public sealed class ProducesPlaylistFileAttribute : ProducesFileAttribute
 | |
|     {
 | |
|         private const string ContentType = "application/x-mpegURL";
 | |
| 
 | |
|         /// <summary>
 | |
|         /// Initializes a new instance of the <see cref="ProducesPlaylistFileAttribute"/> class.
 | |
|         /// </summary>
 | |
|         public ProducesPlaylistFileAttribute()
 | |
|             : base(ContentType)
 | |
|         {
 | |
|         }
 | |
|     }
 | |
| }
 |