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