mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-10-31 02:27:18 -04:00 
			
		
		
		
	MetadataResult.GetOrAddUserData doesn't ever get used and is probably broken since the migration to .NET Core as it still expects a Guid for userId
		
			
				
	
	
		
			24 lines
		
	
	
		
			576 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			576 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using System;
 | |
| using MediaBrowser.Model.Dto;
 | |
| 
 | |
| namespace MediaBrowser.Model.Session
 | |
| {
 | |
|     /// <summary>
 | |
|     /// Class UserDataChangeInfo.
 | |
|     /// </summary>
 | |
|     public class UserDataChangeInfo
 | |
|     {
 | |
|         /// <summary>
 | |
|         /// Gets or sets the user id.
 | |
|         /// </summary>
 | |
|         /// <value>The user id.</value>
 | |
|         public Guid UserId { get; set; }
 | |
| 
 | |
|         /// <summary>
 | |
|         /// Gets or sets the user data list.
 | |
|         /// </summary>
 | |
|         /// <value>The user data list.</value>
 | |
|         public required UserItemDataDto[] UserDataList { get; set; }
 | |
|     }
 | |
| }
 |