// // BottleInfo.h // TreeHole // // Created by mambaxie on 2022/4/29. // #import #import "BottleTypeInfo.h" NS_ASSUME_NONNULL_BEGIN @interface BottleInfo : NSObject @property (nonatomic, assign) int ID; @property (nonatomic, assign) NSInteger bottle_id; @property (nonatomic, strong, nullable) NSString *cover; @property (nonatomic, strong) BottleTypeInfo *typeInfo; @property (nonatomic, assign) int rowIndex; @property (nonatomic, assign) int columnIndex; @end NS_ASSUME_NONNULL_END