mirror of
https://github.com/leanote/leanote-ios.git
synced 2025-10-18 17:52:23 +00:00
20 lines
297 B
Objective-C
20 lines
297 B
Objective-C
//
|
|
// AddNotebookViewController.h
|
|
// Leanote
|
|
//
|
|
// Created by life on 15/6/2.
|
|
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
#import "Note.h"
|
|
#import "Notebook.h"
|
|
|
|
#import "BaseViewController.h"
|
|
|
|
@interface AddNotebookViewController : UITableViewController
|
|
|
|
@property (nonatomic, strong) Notebook *notebook;
|
|
|
|
@end
|