You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

77 lines
1.2 KiB

//
// CallViewController.h
// OpenDuo
//
// Created by suleyu on 2017/10/31.
// Copyright © 2017 Agora. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "User.h"
#import "Device.h"
//默认 限制时间前的提示 的倒数时间 30
#define DefineVideoLimitBeforeShowTime 30
/**
*/
@interface CallViewController : UIViewController
/**
*/
@property(nonatomic, strong) Device * device;
/**
APPID
*/
@property(nonatomic, strong) NSString * appid;
/**
token
*/
@property(nonatomic, strong) NSString * token;
/**
ID
*/
@property(nonatomic, strong) NSString * channelID;
/**
id
*/
@property(nonatomic, strong) NSString * video_id;
/**
uid
*/
@property(nonatomic, assign) NSInteger uid;
/**
device_uid
*/
@property(nonatomic, assign) NSInteger device_uid;
/**
*/
@property(nonatomic, assign) CGSize videoSize;
/**
*/
@property (assign, nonatomic) int limit_time;
/**
*/
@property (assign, nonatomic) int wait_time;
/**
NO
*/
@property (assign, nonatomic) BOOL isReceiveCall;
@end