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

17 lines
441 B
C#
Raw Normal View History

2016-10-23 20:09:43 -04:00
using System;
using System.Threading.Tasks;
2014-08-10 18:13:17 -04:00
using MediaBrowser.Model.Events;
using MediaBrowser.Model.Querying;
2016-10-23 20:09:43 -04:00
namespace MediaBrowser.Model.Activity
2014-08-10 18:13:17 -04:00
{
public interface IActivityManager
{
event EventHandler<GenericEventArgs<ActivityLogEntry>> EntryCreated;
Task Create(ActivityLogEntry entry);
2014-08-14 09:24:30 -04:00
QueryResult<ActivityLogEntry> GetActivityLogEntries(DateTime? minDate, int? startIndex, int? limit);
2014-08-10 18:13:17 -04:00
}
}