CGXVerticalMenuTitleModel.h 599 B

123456789101112131415161718192021222324
  1. //
  2. // CGXVerticalMenuTitleModel.h
  3. // CGXVerticalMenuView-OC
  4. //
  5. // Created by CGX on 2018/05/01.
  6. // Copyright © 2019 CGX. All rights reserved.
  7. //
  8. #import "CGXVerticalMenuBaseModel.h"
  9. #import <UIKit/UIKit.h>
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface CGXVerticalMenuTitleModel : CGXVerticalMenuBaseModel
  12. @property (nonatomic, copy) NSString *title;
  13. @property (nonatomic, strong) UIColor *titleNormalColor;
  14. @property (nonatomic, strong) UIColor *titleSelectedColor;
  15. @property (nonatomic, strong) UIFont *titleFont;
  16. @property (nonatomic, strong) UIFont *titleSelectedFont;
  17. @end
  18. NS_ASSUME_NONNULL_END