123456789101112131415161718192021 |
- //
- // FKVipInfoItem.h
- // FirstLink
- //
- // Created by jack on 15/9/14.
- // Copyright (c) 2015年 FirstLink. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface FKVipInfoItem : NSObject
- @property (nonatomic, strong) NSString *level;
- @property (nonatomic, strong) NSString *vipDays;
- @property (nonatomic, strong) NSString *groupId;
- @property (nonatomic, strong) NSString *isWorkTime;
- @property (nonatomic, strong) NSString *workTime;
- @property (nonatomic, assign) NSInteger status;
- - (VipState)currentVipState;
- - (NSInteger)getVipDays;
- @end
|