123456789101112131415 |
- //
- // RQCommonLabelItemViewModel.h
- // RQCommon
- //
- // Created by 张嵘 on 2018/11/27.
- // Copyright © 2018 张嵘. All rights reserved.
- // 右边显示的内容
- #import "RQCommonItemViewModel.h"
- @interface RQCommonLabelItemViewModel : RQCommonItemViewModel
- /** 右边label显示的内容 */
- @property (nonatomic, readwrite, copy) NSString *text;
- @end
|