1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//
//  EZDeviceUpgradeStatus.h
//  EzvizOpenSDK
//
//  Created by DeJohn Dong on 15/12/21.
//  Copyright © 2015年 Ezviz. All rights reserved.
//
 
#import <Foundation/Foundation.h>
 
/// 此类为设备升级状态对象
@interface EZDeviceUpgradeStatus : NSObject
 
/// 升级进度,仅status_type为升级状态时有效,取值范围为1-100
@property (nonatomic) NSInteger upgradeProgress;
/// 升级状态: 0:正在升级 1:设备重启 2:升级成功 3:升级失败
@property (nonatomic) NSInteger upgradeStatus;
 
@end