Files
jellyfin-jellyfin-1/MediaBrowser.Model/Activity/IActivityRepository.cs

13 lines
258 B
C#
Raw Normal View History

2019-01-06 16:00:30 +01:00
using System.Linq;
using System.Threading.Tasks;
2018-12-27 18:27:57 -05:00
namespace MediaBrowser.Model.Activity
{
public interface IActivityRepository
{
2019-01-06 16:00:30 +01:00
Task CreateAsync(ActivityLogEntry entry);
2018-12-27 18:27:57 -05:00
2019-01-06 16:00:30 +01:00
IQueryable<ActivityLogEntry> GetActivityLogEntries();
2018-12-27 18:27:57 -05:00
}
}