//
//  ScanResultModel.h
//  smartRhino
//
//  Created by tederen on 2019/12/2.
//  Copyright © 2019 tederen. All rights reserved.
//

#import "BaseModel.h"

NS_ASSUME_NONNULL_BEGIN

@interface ScanResultModel : BaseModel
@property (nonatomic, assign) NSInteger key;
@property (nonatomic, strong) NSString *value;
@end

NS_ASSUME_NONNULL_END