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