mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-06-05 06:35:13 -04: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);
|
|
}
|
|
}
|