blob: d4d6a8821903934135e71a3b1d6410c7d8283a02 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
//
// Message.m
// Juick
//
// Created by Vitaly Takmazov on 29.10.13.
// Copyright (c) 2013 com.juick. All rights reserved.
//
#import "Message.h"
#import "AppDelegate.h"
@implementation Message
+ (NSDictionary *)modelCustomPropertyMapper {
return @{@"text" : @"body",
@"mid" : @"mid",
@"rid" : @"rid",
@"attach" : @"photo.small",
@"repliesCount": @"replies",
@"repliesBy": @"repliesby"};
}
@end
|