move classes to model

This commit is contained in:
Luke Pulverenti
2016-10-23 20:09:43 -04:00
parent 2af3ec43d5
commit 78ba88bc7e
18 changed files with 20 additions and 35 deletions

View File

@@ -0,0 +1,13 @@
using System;
using System.Threading.Tasks;
using MediaBrowser.Model.Querying;
namespace MediaBrowser.Model.Activity
{
public interface IActivityRepository
{
Task Create(ActivityLogEntry entry);
QueryResult<ActivityLogEntry> GetActivityLogEntries(DateTime? minDate, int? startIndex, int? limit);
}
}