mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-24 01:34:45 +03: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