mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-17 11:08:06 +00:00
16 lines
426 B
Objective-C
16 lines
426 B
Objective-C
//
|
|
// NotificationTableViewCell.h
|
|
// richNotifications
|
|
//
|
|
// Created by David Idmansour on 26/06/2018.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface NotificationTableViewCell : UITableViewCell
|
|
@property (weak, nonatomic) IBOutlet UIImageView *contactImage;
|
|
@property (weak, nonatomic) IBOutlet UILabel *nameDate;
|
|
@property (weak, nonatomic) IBOutlet UITextView *msgText;
|
|
@property (weak, nonatomic) IBOutlet UILabel *imdm;
|
|
|
|
@end
|