No Description

FKRedPacketConfig.h 431B

123456789101112131415161718192021
  1. //
  2. // FKRedPacketConfig.h
  3. // FirstLink
  4. //
  5. // Created by ascii on 16/7/13.
  6. // Copyright © 2016年 FirstLink. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface FKRedPacketConfig : NSObject
  10. @property (nonatomic, strong) NSString *envelopeStatus;
  11. @property (nonatomic, strong) NSString *shakeStatus;
  12. @property (nonatomic, strong) NSString *firstOrderMsg;
  13. - (BOOL)isMacthEnvelope;
  14. - (BOOL)isNeedShake;
  15. @end