mirror of
https://github.com/oxen-io/session-ios.git
synced 2023-12-13 21:30:14 +01:00
19 lines
470 B
C
19 lines
470 B
C
|
// Copyright © 2016 Open Whisper Systems. All rights reserved.
|
||
|
|
||
|
#import <SignalServiceKit/OWSDevice.h>
|
||
|
#import <UIKit/UIKit.h>
|
||
|
|
||
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
||
|
@interface OWSDeviceTableViewCell : UITableViewCell
|
||
|
|
||
|
@property (strong, nonatomic) IBOutlet UILabel *nameLabel;
|
||
|
@property (strong, nonatomic) IBOutlet UILabel *linkedLabel;
|
||
|
@property (strong, nonatomic) IBOutlet UILabel *lastSeenLabel;
|
||
|
|
||
|
- (void)configureWithDevice:(OWSDevice *)device;
|
||
|
|
||
|
@end
|
||
|
|
||
|
NS_ASSUME_NONNULL_END
|