123456789101112131415161718192021222324252627282930 |
- //
- // XYInviteFriendsHistoryCell.h
- // Starbuds
- //
- // Created by gy on 2020/6/19.
- // Copyright © 2020 翟玉磊. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface XYInviteFriendsHistoryInfo : NSObject
- @property (nonatomic, strong) NSString *userId;
- @property (nonatomic, strong) NSString *avatar;
- @property (nonatomic, strong) NSString *name;
- @property (nonatomic, strong) NSString *level;
- @property (nonatomic, strong) NSString *time;
- @property (nonatomic, strong) NSString *userNo;
- @property (nonatomic, strong) NSString *btnTitle;
- @end
- @interface XYInviteFriendsHistoryCell : UITableViewCell
- - (void)reload:(XYInviteFriendsHistoryInfo *)info;
- @end
- NS_ASSUME_NONNULL_END
|