mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-04 03:27:21 -05:00 
			
		
		
		
	This reverts commit 48ad18d12baeeb42ec0ec7df9473330dcbc76754, reversing changes made to fe197415cac19c0e4005c52761c5e7a37b8a4557.
		
			
				
	
	
		
			13 lines
		
	
	
		
			309 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			309 B
		
	
	
	
		
			C#
		
	
	
	
	
	
using System;
 | 
						|
using MediaBrowser.Model.Querying;
 | 
						|
 | 
						|
namespace MediaBrowser.Model.Activity
 | 
						|
{
 | 
						|
    public interface IActivityRepository
 | 
						|
    {
 | 
						|
        void Create(ActivityLogEntry entry);
 | 
						|
 | 
						|
        QueryResult<ActivityLogEntry> GetActivityLogEntries(DateTime? minDate, bool? z, int? startIndex, int? limit);
 | 
						|
    }
 | 
						|
}
 |