18 lines
281 B
Objective-C
18 lines
281 B
Objective-C
//
|
|
// CandyTreeInfoModel.h
|
|
// xplan-ios
|
|
//
|
|
// Created by 冯硕 on 2021/12/9.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface CandyTreeInfoModel : NSObject
|
|
///糖果的数量
|
|
@property (nonatomic, assign) NSInteger keyNum;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|