MORedConfigData.h 652 B

123456789101112131415161718192021222324
  1. //
  2. // MORedConfigData.h
  3. //
  4. // Created by SuperCabbage on 2024/6/14
  5. // Copyright (c) 2024 __MyCompanyName__. All rights reserved.
  6. //
  7. #import <Foundation/Foundation.h>
  8. @interface MORedConfigData : NSObject <NSCoding, NSCopying>
  9. /** 退款时间配置(分钟) */
  10. @property (nonatomic, assign) double refundMinutes;
  11. /** 红包延迟开始时间配置(分钟) */
  12. @property (nonatomic, strong) NSArray *startDelayMinutes;
  13. @property (nonatomic, strong) NSArray *redSendConfigs;
  14. + (instancetype)modelObjectWithDictionary:(NSDictionary *)dict;
  15. - (instancetype)initWithDictionary:(NSDictionary *)dict;
  16. - (NSDictionary *)dictionaryRepresentation;
  17. @end