IActivityManager.cs 554 B

12345678910111213141516171819
  1. #pragma warning disable CS1591
  2. using System;
  3. using MediaBrowser.Model.Events;
  4. using MediaBrowser.Model.Querying;
  5. namespace MediaBrowser.Model.Activity
  6. {
  7. public interface IActivityManager
  8. {
  9. event EventHandler<GenericEventArgs<ActivityLogEntry>> EntryCreated;
  10. void Create(ActivityLogEntry entry);
  11. QueryResult<ActivityLogEntry> GetActivityLogEntries(DateTime? minDate, int? startIndex, int? limit);
  12. QueryResult<ActivityLogEntry> GetActivityLogEntries(DateTime? minDate, bool? hasUserId, int? x, int? y);
  13. }
  14. }