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