2019-01-25 20:33:58 +00:00
|
|
|
using System;
|
|
|
|
using MediaBrowser.Model.Querying;
|
2018-12-27 23:27:57 +00:00
|
|
|
|
|
|
|
namespace MediaBrowser.Model.Activity
|
|
|
|
{
|
|
|
|
public interface IActivityRepository
|
|
|
|
{
|
2019-01-25 20:33:58 +00:00
|
|
|
void Create(ActivityLogEntry entry);
|
2018-12-27 23:27:57 +00:00
|
|
|
|
2019-01-25 20:33:58 +00:00
|
|
|
QueryResult<ActivityLogEntry> GetActivityLogEntries(DateTime? minDate, bool? z, int? startIndex, int? limit);
|
2018-12-27 23:27:57 +00:00
|
|
|
}
|
|
|
|
}
|