mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-04 03:27:21 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			33 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
using System;
 | 
						|
using MediaBrowser.Controller.Entities;
 | 
						|
using System.Threading;
 | 
						|
using System.Threading.Tasks;
 | 
						|
 | 
						|
namespace MediaBrowser.Controller.Persistence
 | 
						|
{
 | 
						|
    /// <summary>
 | 
						|
    /// Provides an interface to implement a UserData repository
 | 
						|
    /// </summary>
 | 
						|
    public interface IUserDataRepository : IRepository
 | 
						|
    {
 | 
						|
        /// <summary>
 | 
						|
        /// Saves the user data.
 | 
						|
        /// </summary>
 | 
						|
        /// <param name="userId">The user id.</param>
 | 
						|
        /// <param name="key">The key.</param>
 | 
						|
        /// <param name="userData">The user data.</param>
 | 
						|
        /// <param name="cancellationToken">The cancellation token.</param>
 | 
						|
        /// <returns>Task.</returns>
 | 
						|
        Task SaveUserData(Guid userId, string key, UserItemData userData,
 | 
						|
                                    CancellationToken cancellationToken);
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// Gets the user data.
 | 
						|
        /// </summary>
 | 
						|
        /// <param name="userId">The user id.</param>
 | 
						|
        /// <param name="key">The key.</param>
 | 
						|
        /// <returns>Task{UserItemData}.</returns>
 | 
						|
        UserItemData GetUserData(Guid userId, string key);
 | 
						|
    }
 | 
						|
}
 |