mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-06-05 07:18:47 +01:00
add activity log feature
This commit is contained in:
13
MediaBrowser.Controller/Activity/IActivityRepository.cs
Normal file
13
MediaBrowser.Controller/Activity/IActivityRepository.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
using MediaBrowser.Model.Activity;
|
||||
using MediaBrowser.Model.Querying;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace MediaBrowser.Controller.Activity
|
||||
{
|
||||
public interface IActivityRepository
|
||||
{
|
||||
Task Create(ActivityLogEntry entry);
|
||||
|
||||
QueryResult<ActivityLogEntry> GetActivityLogEntries(int? startIndex, int? limit);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user