// // InvitationAnswerViewController.h // kneet2 // // Created by Jason Lee on 10/21/15. // Copyright © 2015 ntels. All rights reserved. // #import "JDViewController.h" @class CustomImageView; @class CustomButton; @class CustomLabel; @class InvitationModel; @interface InvitationAnswerViewController : JDViewController #pragma mark - Properties @property (weak, nonatomic) InvitationModel *invitation; @property (weak, nonatomic) IBOutlet CustomImageView *imgvFromProfile; @property (weak, nonatomic) IBOutlet CustomLabel *lblQuiz; #pragma mark - Instance Methods - (IBAction)btnAnswerTouched:(id)sender; - (IBAction)btnCloseTouched:(id)sender; @end