mirror of
https://github.com/darlinghq/darling-security.git
synced 2024-11-27 05:50:21 +00:00
15 lines
303 B
Objective-C
15 lines
303 B
Objective-C
//
|
|
// DeviceItemCell.h
|
|
// Security
|
|
//
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface DeviceItemCell : UITableViewCell
|
|
@property (weak, nonatomic) IBOutlet UILabel *itemDeviceName;
|
|
@property (weak, nonatomic) IBOutlet UILabel *itemPeerID;
|
|
@property (weak, nonatomic) IBOutlet UILabel *itemDeviceStatus;
|
|
|
|
@end
|