// // FKFeatureStyleModel.h // FirstLink // // Created by jack on 15/9/18. // Copyright (c) 2015年 FirstLink. All rights reserved. // #import typedef NS_ENUM(NSUInteger, kVipFeatureType) { kVipFeatureTypePrice, kVipFeatureTypeServe, kVipFeatureTypeBuy }; @interface FKFeatureStyleModel : NSObject @property (nonatomic, strong) NSString *iconImgName; @property (nonatomic, strong) NSString *powerImgName; @property (nonatomic, strong) NSString *privilegeImgName; @property (nonatomic, strong) UIColor *titleColor; @property (nonatomic, strong) NSString *titleName; @property (nonatomic, strong) NSString *privilegeDesc; @property (nonatomic, strong) NSString *vipPriceDesc; @property (nonatomic, assign) kVipFeatureType type; + (FKFeatureStyleModel *)styleModelForType:(kVipFeatureType)type; @end