13 lines
258 B
C#
13 lines
258 B
C#
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MediaBrowser.Model.Activity
|
|
{
|
|
public interface IActivityRepository
|
|
{
|
|
Task CreateAsync(ActivityLogEntry entry);
|
|
|
|
IQueryable<ActivityLogEntry> GetActivityLogEntries();
|
|
}
|
|
}
|