rework notifications infrastructure

This commit is contained in:
Luke Pulverenti
2014-04-25 16:15:50 -04:00
parent eda8159b44
commit 547291f048
34 changed files with 455 additions and 323 deletions

View File

@@ -10,8 +10,8 @@ namespace MediaBrowser.Controller.Notifications
public class NotificationReadEventArgs : EventArgs
{
public Guid[] IdList { get; set; }
public Guid UserId { get; set; }
public string[] IdList { get; set; }
public string UserId { get; set; }
public bool IsRead { get; set; }
}
}