diff options
author | Vitaly Takmazov | 2013-10-30 00:50:34 +0400 |
---|---|---|
committer | Vitaly Takmazov | 2013-10-30 00:50:34 +0400 |
commit | 566f122683240ea47f391033ec4e11ef424e7a5c (patch) | |
tree | fbe00959f88b3a16d2d4768c1cc223781a377160 /Juick/Message.h | |
parent | 7e7b734fc859234c9424b2ed98f5a2afef911de0 (diff) |
Working main feed
Diffstat (limited to 'Juick/Message.h')
-rw-r--r-- | Juick/Message.h | 20 |
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 |