23 lines
419 B
Objective-C
23 lines
419 B
Objective-C
//
|
|
// CPCard.h
|
|
// YuMi
|
|
//
|
|
// Created by P on 2024/9/18.
|
|
//
|
|
|
|
|
|
#import <UIKit/UIKit.h>
|
|
@class RelationUserVO;
|
|
|
|
@interface CPCard : UIView
|
|
|
|
@property (nonatomic, assign) BOOL isListItem;
|
|
@property (nonatomic, copy) NSString *usersAvatar;
|
|
@property (nonatomic, copy) void(^breakTheHeart)(RelationUserVO *model);
|
|
|
|
- (void)updateForUserPage:(RelationUserVO *)model;
|
|
- (void)updateForCPList:(RelationUserVO *)model;
|
|
|
|
|
|
@end
|