mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-04-24 14:08:44 -04:00
12 lines
258 B
C#
12 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();
|
|
}
|
|
}
|