mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-03-27 04:22:08 +00:00
added a notifications service
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
using MediaBrowser.Model.Notifications;
|
||||
using System;
|
||||
|
||||
namespace MediaBrowser.Controller.Notifications
|
||||
{
|
||||
public class NotificationUpdateEventArgs : EventArgs
|
||||
{
|
||||
public Notification Notification { get; set; }
|
||||
}
|
||||
|
||||
public class NotificationReadEventArgs : EventArgs
|
||||
{
|
||||
public Guid[] IdList { get; set; }
|
||||
public Guid UserId { get; set; }
|
||||
public bool IsRead { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user