28 lines
564 B
Objective-C
28 lines
564 B
Objective-C
//
|
|
// Xuanduo2SettingController.h
|
|
// Ifish
|
|
//
|
|
// Created by Alex on 2019/4/28.
|
|
// Copyright © 2019 lianlian. All rights reserved.
|
|
//
|
|
|
|
#import "FatherController.h"
|
|
#import "IfishDeviceInfo.h"
|
|
#include "xuanduo3fModel.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@class Xuanduo2Model;
|
|
|
|
@interface Xuanduo2SettingController : FatherController
|
|
|
|
@property (nonatomic,strong) UIActivityIndicatorView*indicatorView;
|
|
@property (nonatomic ,strong) id dataModel;
|
|
@property(nonatomic,strong) DeviceModel* currentdevice;
|
|
|
|
- (void)refreshWithData:(id)model;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|