19 lines
281 B
Objective-C
19 lines
281 B
Objective-C
//
|
|
// InviteRecordsTableViewCell.h
|
|
// ShenQi
|
|
//
|
|
// Created by Yao on 2024/11/6.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface InviteRecordsTableViewCell : UITableViewCell
|
|
|
|
@property (weak, nonatomic) IBOutlet UILabel *titleLabel;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|