diff options
author | Vitaly Takmazov | 2018-11-30 00:07:45 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2018-11-30 00:07:45 +0300 |
commit | bff94ce64e6729bda5f1e7f728796f87d138fcbe (patch) | |
tree | 3e903cb3ce7b2bfcad92ffc84a021d534606b2b3 /Juick/Model | |
parent | 99e30a020263d7723d1229b14e0ba3a22ecc81ad (diff) |
Remove read notifications
Diffstat (limited to 'Juick/Model')
-rw-r--r-- | Juick/Model/Message.h | 1 | ||||
-rw-r--r-- | Juick/Model/Message.m | 3 |
2 files changed, 1 insertions, 3 deletions
diff --git a/Juick/Model/Message.h b/Juick/Model/Message.h index 45b14fa..8e1b01a 100644 --- a/Juick/Model/Message.h +++ b/Juick/Model/Message.h @@ -24,5 +24,6 @@ @property NSString *repliesBy; @property NSNumber *repliesCount; @property Attachment *attachment; +@property BOOL service; @end diff --git a/Juick/Model/Message.m b/Juick/Model/Message.m index 2a4090a..d00f705 100644 --- a/Juick/Model/Message.m +++ b/Juick/Model/Message.m @@ -13,9 +13,6 @@ + (NSDictionary *)modelCustomPropertyMapper { return @{@"text" : @"body", - @"mid" : @"mid", - @"rid" : @"rid", - @"entities": @"entities", @"attach" : @"photo.small", @"repliesCount": @"replies", @"repliesBy": @"repliesby"}; |