説明なし

FKFeatureStyleModel.h 843B

12345678910111213141516171819202122232425262728
  1. //
  2. // FKFeatureStyleModel.h
  3. // FirstLink
  4. //
  5. // Created by jack on 15/9/18.
  6. // Copyright (c) 2015年 FirstLink. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. typedef NS_ENUM(NSUInteger, kVipFeatureType) {
  10. kVipFeatureTypePrice,
  11. kVipFeatureTypeServe,
  12. kVipFeatureTypeBuy
  13. };
  14. @interface FKFeatureStyleModel : NSObject
  15. @property (nonatomic, strong) NSString *iconImgName;
  16. @property (nonatomic, strong) NSString *powerImgName;
  17. @property (nonatomic, strong) NSString *privilegeImgName;
  18. @property (nonatomic, strong) UIColor *titleColor;
  19. @property (nonatomic, strong) NSString *titleName;
  20. @property (nonatomic, strong) NSString *privilegeDesc;
  21. @property (nonatomic, strong) NSString *vipPriceDesc;
  22. @property (nonatomic, assign) kVipFeatureType type;
  23. + (FKFeatureStyleModel *)styleModelForType:(kVipFeatureType)type;
  24. @end