123456789101112131415161718192021 |
- //
- // FKRedPacketConfig.h
- // FirstLink
- //
- // Created by ascii on 16/7/13.
- // Copyright © 2016年 FirstLink. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface FKRedPacketConfig : NSObject
- @property (nonatomic, strong) NSString *envelopeStatus;
- @property (nonatomic, strong) NSString *shakeStatus;
- @property (nonatomic, strong) NSString *firstOrderMsg;
- - (BOOL)isMacthEnvelope;
- - (BOOL)isNeedShake;
- @end
|