summaryrefslogtreecommitdiff
path: root/Juick/Message.h
diff options
context:
space:
mode:
Diffstat (limited to 'Juick/Message.h')
-rw-r--r--Juick/Message.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/Juick/Message.h b/Juick/Message.h
new file mode 100644
index 0000000..4ec31e6
--- /dev/null
+++ b/Juick/Message.h
@@ -0,0 +1,20 @@
+//
+// Message.h
+// Juick
+//
+// Created by Vitaly Takmazov on 29.10.13.
+// Copyright (c) 2013 com.juick. All rights reserved.
+//
+
+#import <Foundation/Foundation.h>
+#import "NSString+HTML.h"
+
+@interface Message : NSObject
+
+@property(nonatomic, copy) NSDecimalNumber *MID;
+@property(nonatomic, copy) NSDecimalNumber *RID;
+@property(nonatomic, copy) NSString *user;
+@property(nonatomic, copy) NSString *text;
+
+-(id) initWithDictionary:(NSDictionary *)dictionary;
+@end