// // CandyTreeInfoModel.h // xplan-ios // // Created by 冯硕 on 2021/12/9. // #import NS_ASSUME_NONNULL_BEGIN @interface CandyTreeInfoModel : NSObject ///糖果的数量 @property (nonatomic, assign) NSInteger keyNum; ///糖果树展示消息开关需要的等级 @property (nonatomic, assign) NSInteger sendMessageSwitchLevel; @end NS_ASSUME_NONNULL_END