SNSRecentTopicTableViewCell.h 753 Bytes
//
//  SNSRecentTopicTableViewCell.h
//  LifeLog
//
//  Created by nvtu on 8/10/17.
//  Copyright © 2017 PhongNV. All rights reserved.
//

#import <UIKit/UIKit.h>
#import "Entities.h"

@interface SNSRecentTopicTableViewCell : UITableViewCell

@property (weak, nonatomic) IBOutlet UIImageView *imgAvatar;
@property (weak, nonatomic) IBOutlet UILabel *lblDateTime;
@property (weak, nonatomic) IBOutlet UILabel *lblUsername;
@property (weak, nonatomic) IBOutlet UILabel *lblDes;
@property (weak, nonatomic) IBOutlet UILabel *lblMode;
@property (weak, nonatomic) IBOutlet UILabel *lblDistance;
@property (weak, nonatomic) IBOutlet UILabel *lblDuration;

-(void) setMemberData : (MemberObject *) object;
-(void) setTweetsData : (TweetObject *) object;
@end