123456789101112131415161718 |
- //
- // CommonProfileHeaderItemViewModel.h
- // RQCommon
- //
- // Created by 张嵘 on 2018/11/27.
- // Copyright © 2018 张嵘. All rights reserved.
- //
- #import "RQCommonItemViewModel.h"
- @interface CommonProfileHeaderItemViewModel : RQCommonItemViewModel
- /// 用户头像
- @property (nonatomic, readonly, strong) RQUserModel *user;
- - (instancetype)initViewModelWithUser:(RQUserModel *)user;
- @end
|