// // SocketMsgModel.h // OneCable // // Created by KaRam Kim on 2017. 4. 20.. // Copyright © 2017년 ntels. All rights reserved. // #import #import "JDJSONModel.h" #define MSG_TYPE_LOGIN @"auth" #define MSG_TYPE_DEVICE_ALIVE @"device.alive" #define MSG_TYPE_AUTO_LOGIN @"auth.auto" @interface SocketRequestModel : SocketModel @property (copy, nonatomic) NSDictionary *requestMsg; //-(void)setRequestId:(int)requestId; -(NSString *)getSendMessage; -(id)initWithMsgType:(NSString *)msgType; @end