aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Activity/IActivityRepository.cs
blob: 8ee87ee2eabe89c3ba51b0bc52f66677379c6f1a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
using System;
using MediaBrowser.Model.Querying;

namespace MediaBrowser.Model.Activity
{
    public interface IActivityRepository
    {
        void Create(ActivityLogEntry entry);

        QueryResult<ActivityLogEntry> GetActivityLogEntries(DateTime? minDate, int? startIndex, int? limit);
    }
}