// // MORedConfigData.h // // Created by SuperCabbage on 2024/6/14 // Copyright (c) 2024 __MyCompanyName__. All rights reserved. // #import @interface MORedConfigData : NSObject /** 退款时间配置(分钟) */ @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