XYSetSkillInfoCellModel.h 481 B

12345678910111213141516171819202122
  1. //
  2. // XYSetSkillInfoCellModel.h
  3. // Starbuds
  4. //
  5. // Created by 翟玉磊 on 2020/10/29.
  6. // Copyright © 2020 翟玉磊. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface XYSetSkillInfoCellModel : NSObject
  11. @property (nonatomic, copy) NSString *title;
  12. @property (nonatomic, copy) NSString *content;
  13. @property (nonatomic, strong) UIColor *contentColor;
  14. @property (nonatomic, assign) BOOL isShowBottomLine;
  15. @end
  16. NS_ASSUME_NONNULL_END