WallpadSubDevicePopupView.h 570 B

123456789101112131415161718192021222324252627
  1. //
  2. // WallpadSubDevicePopupView.h
  3. // kneet
  4. //
  5. // Created by Jason Lee on 7/21/15.
  6. // Copyright (c) 2015 ntels. All rights reserved.
  7. //
  8. @import UIKit;
  9. #import "CustomAlertView.h"
  10. @class DeviceModel;
  11. @class DeviceDetailModel;
  12. @class LDProgressView;
  13. @interface WallpadSubDevicePopupView : CustomAlertView
  14. @property (weak, nonatomic) NSString *wallpadId;
  15. @property (weak, nonatomic) IBOutlet LDProgressView *progressView;
  16. @property (weak, nonatomic) IBOutlet CustomLabel *lblDesc;
  17. @property (strong, nonatomic) DeviceModel *foundedDevice;
  18. - (id)initFromNib;
  19. @end