jellyfin/MediaBrowser.Model/Activity/IActivityManager.cs

17 lines
446 B
C#
Raw Normal View History

using System;
2019-01-06 16:00:30 +01:00
using System.Collections.Generic;
using System.Threading.Tasks;
2018-12-28 00:27:57 +01:00
using MediaBrowser.Model.Events;
namespace MediaBrowser.Model.Activity
{
public interface IActivityManager
{
event EventHandler<GenericEventArgs<ActivityLogEntry>> EntryCreated;
2019-01-23 19:09:34 +01:00
Task CreateAsync(ActivityLogEntry entry);
2018-12-28 00:27:57 +01:00
2019-01-06 16:00:30 +01:00
IEnumerable<ActivityLogEntry> GetActivityLogEntries(DateTime? minDate, bool? hasUserId, int? x, int? y);
2018-12-28 00:27:57 +01:00
}
}