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.

58 lines
914 B

//
// VideoConfigModel.h
// watch
//
// Created by Apple on 2019/5/13.
// Copyright © 2019年 xTT. All rights reserved.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
@interface VideoConfigModel : NSObject
/**
imei
*/
@property(nonatomic, strong) NSString * imei;
/**
id
*/
@property(nonatomic, strong) NSString * video_id;
/**
*/
@property(nonatomic, assign) NSInteger distinguishability_width;
/**
*/
@property(nonatomic, assign) NSInteger distinguishability_heiger;
/**
*/
@property(nonatomic, strong) NSString *video_endtime;
/**
*/
@property (assign, nonatomic) int limit_time;
/**
*/
@property (assign, nonatomic) int wait_time;
/**
0: 1:
*/
@property (assign, nonatomic) int call_type;
@end
NS_ASSUME_NONNULL_END