12345678910111213141516171819202122 |
- //
- // XYSetSkillInfoCellModel.h
- // Starbuds
- //
- // Created by 翟玉磊 on 2020/10/29.
- // Copyright © 2020 翟玉磊. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface XYSetSkillInfoCellModel : NSObject
- @property (nonatomic, copy) NSString *title;
- @property (nonatomic, copy) NSString *content;
- @property (nonatomic, strong) UIColor *contentColor;
- @property (nonatomic, assign) BOOL isShowBottomLine;
- @end
- NS_ASSUME_NONNULL_END
|