XYInviteFriendsHistoryCell.h 718 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // XYInviteFriendsHistoryCell.h
  3. // Starbuds
  4. //
  5. // Created by gy on 2020/6/19.
  6. // Copyright © 2020 翟玉磊. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface XYInviteFriendsHistoryInfo : NSObject
  11. @property (nonatomic, strong) NSString *userId;
  12. @property (nonatomic, strong) NSString *avatar;
  13. @property (nonatomic, strong) NSString *name;
  14. @property (nonatomic, strong) NSString *level;
  15. @property (nonatomic, strong) NSString *time;
  16. @property (nonatomic, strong) NSString *userNo;
  17. @property (nonatomic, strong) NSString *btnTitle;
  18. @end
  19. @interface XYInviteFriendsHistoryCell : UITableViewCell
  20. - (void)reload:(XYInviteFriendsHistoryInfo *)info;
  21. @end
  22. NS_ASSUME_NONNULL_END