Files
peko-ios/YuMi/Modules/YMMine/View/SubViews/CPCard.h
2024-09-19 16:52:32 +08:00

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