jellyfin/MediaBrowser.Model/Activity/IActivityManager.cs

18 lines
522 B
C#
Raw Normal View History

using System;
2018-12-28 00:27:57 +01:00
using MediaBrowser.Model.Events;
using MediaBrowser.Model.Querying;
2018-12-28 00:27:57 +01:00
namespace MediaBrowser.Model.Activity
{
public interface IActivityManager
{
event EventHandler<GenericEventArgs<ActivityLogEntry>> EntryCreated;
void Create(ActivityLogEntry entry);
2018-12-28 00:27:57 +01:00
QueryResult<ActivityLogEntry> GetActivityLogEntries(DateTime? minDate, int? startIndex, int? limit);
QueryResult<ActivityLogEntry> GetActivityLogEntries(DateTime? minDate, bool? hasUserId, int? x, int? y);
2018-12-28 00:27:57 +01:00
}
}