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

namespace MediaBrowser.Model.Activity
{
    public interface IActivityRepository
    {
        Task CreateAsync(ActivityLogEntry entry);

        IQueryable<ActivityLogEntry> GetActivityLogEntries();
    }
}