Move INotificationsClient to under IActivitiesClient

per #1015.

Top level client obsoleted.
This commit is contained in:
Mordechai Zuber
2015-12-20 14:05:20 +02:00
parent 078c710f8e
commit 97e9ee566e
8 changed files with 16 additions and 1 deletions
+5
View File
@@ -19,6 +19,7 @@
Starring = new StarredClient(apiConnection);
Watching = new WatchedClient(apiConnection);
Feeds = new FeedsClient(apiConnection);
Notifications = new NotificationsClient(apiConnection);
}
/// <summary>
@@ -37,5 +38,9 @@
/// Client for the Feeds API
/// </summary>
public IFeedsClient Feeds { get; private set; }
/// <summary>
/// Client for the Notifications API
/// </summary>
public INotificationsClient Notifications { get; private set; }
}
}