mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-22 15:53:59 +01: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();
|
|
}
|
|
}
|