// // KSRCPauseLiveMessage.m // StudentDaya // // Created by 王智 on 2022/5/23. // Copyright © 2022 DayaMusic. All rights reserved. // #import "KSRCPauseLiveMessage.h" @implementation KSRCPauseLiveMessage - (NSData *)encode { NSMutableDictionary *multableDict = [NSMutableDictionary dictionary]; return [NSJSONSerialization dataWithJSONObject:multableDict options:kNilOptions error:nil]; } - (void)decodeWithData:(NSData *)data { if (data == nil) return; NSDictionary *dictionary = [NSJSONSerialization JSONObjectWithData:data options:kNilOptions error:nil]; NSDictionary *json = [[NSDictionary alloc] initWithDictionary:dictionary]; if (json == nil) return; } + (NSString *)getObjectName { return @"RC:Chatroom:PauseLive"; } - (NSArray *)getSearchableWords { return nil; } + (RCMessagePersistent)persistentFlag { return MessagePersistent_NONE; } @end