1234567891011121314151617181920 |
- //
- // FKVipDiscountItem.h
- // FirstLink
- //
- // Created by ascii on 2017/5/18.
- // Copyright © 2017年 FirstLink. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface FKVipDiscountItem : NSObject
- @property (nonatomic, assign) BOOL isUseVipDiscount;
- @property (nonatomic, strong) NSString *discount;
- @property (nonatomic, strong) NSString *quantity;
- - (BOOL)isVipUserWithDiscount;
- @end
|