NotificationUpdateEventArgs.cs 431 B

1234567891011121314151617
  1. using MediaBrowser.Model.Notifications;
  2. using System;
  3. namespace MediaBrowser.Controller.Notifications
  4. {
  5. public class NotificationUpdateEventArgs : EventArgs
  6. {
  7. public Notification Notification { get; set; }
  8. }
  9. public class NotificationReadEventArgs : EventArgs
  10. {
  11. public string[] IdList { get; set; }
  12. public string UserId { get; set; }
  13. public bool IsRead { get; set; }
  14. }
  15. }