mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-18 15:03:06 +03:00
14 lines
340 B
C#
14 lines
340 B
C#
|
|
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);
|
|||
|
|
}
|
|||
|
|
}
|