IdFindCompleteViewController.h 788 B

1234567891011121314151617181920212223242526
  1. //
  2. // IdFindCompleteViewController.h
  3. // OneCable
  4. //
  5. // Created by nComz on 2017. 3. 31..
  6. // Copyright © 2017년 ntels. All rights reserved.
  7. //
  8. #import "JDViewController.h"
  9. @class CustomLabel;
  10. @class CustomButton;
  11. @interface IdFindCompleteViewController : JDViewController
  12. @property (strong, nonatomic) NSString *memberId ;
  13. @property (strong, nonatomic) NSString *nickName ;
  14. @property (weak, nonatomic) IBOutlet CustomLabel *lblStep;
  15. @property (weak, nonatomic) IBOutlet CustomLabel *lblUserId; // 사용자 아이디
  16. @property (weak, nonatomic) IBOutlet CustomButton *btnConfirm; // 확인 버튼
  17. @property (weak, nonatomic) IBOutlet CustomButton *btnPwFind; // 비밀번호 찾기 버튼
  18. @property (weak, nonatomic) IBOutlet CustomLabel *lblUserName; // 사용자 명
  19. @end