diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-04-25 16:15:50 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-04-25 16:15:50 -0400 |
| commit | 547291f04865f23090986667b5a802cd89ea003d (patch) | |
| tree | ff2e4c105979fea94390af6c3614193a0d2a9dc5 /MediaBrowser.Model/ApiClient/IApiClient.cs | |
| parent | eda8159b4408c4b33cbdd56e3e6ed2f82757bb0c (diff) | |
rework notifications infrastructure
Diffstat (limited to 'MediaBrowser.Model/ApiClient/IApiClient.cs')
| -rw-r--r-- | MediaBrowser.Model/ApiClient/IApiClient.cs | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/MediaBrowser.Model/ApiClient/IApiClient.cs b/MediaBrowser.Model/ApiClient/IApiClient.cs index 323373106..bbd07817c 100644 --- a/MediaBrowser.Model/ApiClient/IApiClient.cs +++ b/MediaBrowser.Model/ApiClient/IApiClient.cs @@ -141,18 +141,11 @@ namespace MediaBrowser.Model.ApiClient Task MarkNotificationsRead(string userId, IEnumerable<Guid> notificationIdList, bool isRead); /// <summary> - /// Updates the notification. - /// </summary> - /// <param name="notification">The notification.</param> - /// <returns>Task.</returns> - Task UpdateNotification(Notification notification); - - /// <summary> /// Adds the notification. /// </summary> /// <param name="notification">The notification.</param> /// <returns>Task{Notification}.</returns> - Task<Notification> AddNotification(Notification notification); + Task SendNotification(NotificationRequest notification); /// <summary> /// Gets the notifications summary. |
