// // ConversationCell.h // Juick // // Created by Vitaly Takmazov on 04/03/2018. // Copyright © 2018 com.juick. All rights reserved. // #import #import "Chat.h" @interface ConversationCell : UITableViewCell @property (strong, nonatomic) IBOutlet UILabel *chatName; @property (strong, nonatomic) IBOutlet UIImageView *avatar; @property (strong, nonatomic) IBOutlet UILabel *lastMessage; @property (strong, nonatomic) IBOutlet UILabel *unreadMarker; -(void) configureWithChat:(Chat *)chat; @end