// // NotificationsViewController.h // NewsBlur // // Created by Samuel Clay on 11/23/16. // Copyright © 2016 NewsBlur. All rights reserved. // #import #import "NewsBlurAppDelegate.h" @class NewsBlurAppDelegate; @interface NotificationsViewController : BaseViewController { NewsBlurAppDelegate *appDelegate; NSArray *notificationFeedIds; } @property (nonatomic) IBOutlet NewsBlurAppDelegate *appDelegate; @property (nonatomic) IBOutlet UITableView *notificationsTable; @property (nonatomic) NSString *feedId; @end