12345678910111213141516171819 |
- //
- // RQProfileUserAndVipItemViewModel.h
- // jiaPei
- //
- // Created by 张嵘 on 2022/4/26.
- // Copyright © 2022 JCZ. All rights reserved.
- //
- #import "RQCommonCollectionItemViewModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface RQProfileUserAndVipItemViewModel : RQCommonCollectionItemViewModel
- @property (nonatomic, readonly, strong) RQUserModel *userModel;
- - (instancetype)initViewModelWithUser:(RQUserModel *)user;
- @end
- NS_ASSUME_NONNULL_END
|