| 123456789101112131415161718192021222324252627 |
- //
- // WallpadSubDevicePopupView.h
- // kneet
- //
- // Created by Jason Lee on 7/21/15.
- // Copyright (c) 2015 ntels. All rights reserved.
- //
- @import UIKit;
- #import "CustomAlertView.h"
- @class DeviceModel;
- @class DeviceDetailModel;
- @class LDProgressView;
- @interface WallpadSubDevicePopupView : CustomAlertView
- @property (weak, nonatomic) NSString *wallpadId;
- @property (weak, nonatomic) IBOutlet LDProgressView *progressView;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblDesc;
- @property (strong, nonatomic) DeviceModel *foundedDevice;
- - (id)initFromNib;
- @end
|