Nenhuma Descrição

FKVipInfoItem.h 559B

123456789101112131415161718192021
  1. //
  2. // FKVipInfoItem.h
  3. // FirstLink
  4. //
  5. // Created by jack on 15/9/14.
  6. // Copyright (c) 2015年 FirstLink. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface FKVipInfoItem : NSObject
  10. @property (nonatomic, strong) NSString *level;
  11. @property (nonatomic, strong) NSString *vipDays;
  12. @property (nonatomic, strong) NSString *groupId;
  13. @property (nonatomic, strong) NSString *isWorkTime;
  14. @property (nonatomic, strong) NSString *workTime;
  15. @property (nonatomic, assign) NSInteger status;
  16. - (VipState)currentVipState;
  17. - (NSInteger)getVipDays;
  18. @end