summaryrefslogtreecommitdiff
path: root/Juick/ViewControllers/NewPostViewController.h
diff options
context:
space:
mode:
authorGravatar Vitaly Takmazov2017-12-09 23:47:30 +0300
committerGravatar Vitaly Takmazov2017-12-09 23:47:30 +0300
commita38541e14ecfea8e37c80755fb3b2ef25cd81272 (patch)
tree3b26f5e4f86a4eb103193535abf7f9b15e0e67e6 /Juick/ViewControllers/NewPostViewController.h
parente2ac87809468e9487389e5d22ab9766996898478 (diff)
working post/reply
Diffstat (limited to 'Juick/ViewControllers/NewPostViewController.h')
-rw-r--r--Juick/ViewControllers/NewPostViewController.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/Juick/ViewControllers/NewPostViewController.h b/Juick/ViewControllers/NewPostViewController.h
index 3d4ba88..7a1dfac 100644
--- a/Juick/ViewControllers/NewPostViewController.h
+++ b/Juick/ViewControllers/NewPostViewController.h
@@ -7,8 +7,14 @@
//
#import <UIKit/UIKit.h>
+#import "Message.h"
@interface NewPostViewController : UIViewController
@property (weak, nonatomic) IBOutlet UITextView *textView;
@property (weak, nonatomic) IBOutlet NSLayoutConstraint *bottomConstraint;
+
+@property (strong, nonatomic) NSString *draft;
+
+@property (strong, nonatomic) Message *replyTo;
+
@end