summaryrefslogtreecommitdiff
path: root/Juick/Message.h
diff options
context:
space:
mode:
authorGravatar Vitaly Takmazov2016-08-28 21:03:22 +0300
committerGravatar Vitaly Takmazov2016-08-28 21:03:22 +0300
commit188d8e4ea870d1a6c8edd5a9b323742804badeba (patch)
tree071067f7189a6474d49abb952b1b04b820985b7a /Juick/Message.h
parenta74588083c4950e9237dff7a84ccdd129b72c950 (diff)
project cleanup
Diffstat (limited to 'Juick/Message.h')
-rw-r--r--Juick/Message.h29
1 files changed, 0 insertions, 29 deletions
diff --git a/Juick/Message.h b/Juick/Message.h
deleted file mode 100644
index 39d3c38..0000000
--- a/Juick/Message.h
+++ /dev/null
@@ -1,29 +0,0 @@
-//
-// 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"
-
-@interface Message : NSObject
-
-@property NSNumber *MID;
-@property NSNumber *RID;
-@property User *user;
-@property NSString *text;
-@property NSArray *tags;
-@property NSString *timestamp;
-@property NSString *attach;
-@property NSString *repliesBy;
-@property NSNumber *repliesCount;
-
-+(void) pullNextFromPath:(NSString *)path params:(NSDictionary *)params callback:(void(^)(NSArray *))callback;
-+(NSString *) messagesUrl;
-+(NSString *) threadUrl;
-+(NSString *) feedUrl;
-
-@end