// // CPCard.h // YuMi // // Created by P on 2024/9/18. // #import @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