summaryrefslogtreecommitdiff
path: root/Juick/Model/Message.h
blob: 5eab2796c961038611fbba0d1304173dac127f88 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
//
//  Message.h
//  Juick
//
//  Created by Vitaly Takmazov on 29.10.13.
//  Copyright (c) 2013 com.juick. All rights reserved.
//

#import <Foundation/Foundation.h>
#import "User.h"
#import "Attachment.h"

@interface Message : NSObject

@property NSNumber *mid;
@property NSNumber *rid;
@property User *user;
@property NSString *text;
@property NSArray<NSString *> *tags;
@property NSString *timestamp;
@property NSString *attach;
@property NSString *repliesBy;
@property NSNumber *repliesCount;
@property Attachment *attachment;

@end