blob: c1952d436bed42b7a3766de2370d825617df4674 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
using System;
using System.Threading.Tasks;
using MediaBrowser.Model.Querying;
namespace MediaBrowser.Model.Activity
{
public interface IActivityRepository
{
Task Create(ActivityLogEntry entry);
QueryResult<ActivityLogEntry> GetActivityLogEntries(DateTime? minDate, int? startIndex, int? limit);
}
}
|