blob: 66144ec47837229ff90418a4d2efe4e14f13e357 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#pragma warning disable CS1591
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);
}
}
|