blob: d8a6634dfcca403244510a77a674cfa15c2097a8 (
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 string[] IdList { get; set; }
public string UserId { get; set; }
public bool IsRead { get; set; }
}
}
|