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