Initial commit

This commit is contained in:
ifish
2017-08-15 16:59:01 +08:00
commit bdc83e07ef
5766 changed files with 423223 additions and 0 deletions
@@ -0,0 +1,37 @@
//
// NetCallChatInfo.h
// NIM
//
// Created by chris on 15/5/12.
// Copyright (c) 2015年 Netease. All rights reserved.
//
#import <Foundation/Foundation.h>
@interface NetCallChatInfo : NSObject
@property(nonatomic,strong) NSString *caller;
@property(nonatomic,strong) NSString *callee;
@property(nonatomic,assign) UInt64 callID;
@property(nonatomic,assign) NIMNetCallMediaType callType;
@property(nonatomic,assign) NSTimeInterval startTime;
@property(nonatomic,assign) BOOL isStart;
@property(nonatomic,assign) BOOL isMute;
@property(nonatomic,assign) BOOL useSpeaker;
@property(nonatomic,assign) BOOL disableCammera;
@property(nonatomic,assign) BOOL localRecording;
@property(nonatomic,assign) BOOL otherSideRecording;
@property(nonatomic,assign) BOOL audioConversation;
@end
@@ -0,0 +1,13 @@
//
// NetCallChatInfo.m
// NIM
//
// Created by chris on 15/5/12.
// Copyright (c) 2015年 Netease. All rights reserved.
//
#import "NetCallChatInfo.h"
@implementation NetCallChatInfo
@end