blob: e156ca26a3173e5ab29cf81ecedc0193d5ecc751 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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; }
}
}
|