using System; using MediaBrowser.Model.Events; using MediaBrowser.Model.Querying; namespace MediaBrowser.Model.Activity { public interface IActivityManager { event EventHandler> EntryCreated; void Create(ActivityLogEntry entry); QueryResult GetActivityLogEntries(DateTime? minDate, int? startIndex, int? limit); } }