mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-05-13 11:02:23 -04:00
d1a0497f55
This reverts commit48ad18d12b, reversing changes made tofe197415ca.
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);
|
|
}
|
|
}
|