mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-10-30 18:22:48 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			25 lines
		
	
	
		
			614 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			614 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using System;
 | |
| 
 | |
| namespace Jellyfin.Api.Models.SyncPlayDtos
 | |
| {
 | |
|     /// <summary>
 | |
|     /// Class NextItemRequestDto.
 | |
|     /// </summary>
 | |
|     public class NextItemRequestDto
 | |
|     {
 | |
|         /// <summary>
 | |
|         /// Initializes a new instance of the <see cref="NextItemRequestDto"/> class.
 | |
|         /// </summary>
 | |
|         public NextItemRequestDto()
 | |
|         {
 | |
|             PlaylistItemId = Guid.Empty;
 | |
|         }
 | |
| 
 | |
|         /// <summary>
 | |
|         /// Gets or sets the playing item identifier.
 | |
|         /// </summary>
 | |
|         /// <value>The playing item identifier.</value>
 | |
|         public Guid PlaylistItemId { get; set; }
 | |
|     }
 | |
| }
 |