13 lines
312 B
C#
13 lines
312 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);
|
|||
|
}
|
|||
|
}
|