cdts/xdts-ios 3/TreeHole/Code/Features/Bottle/Model/BottleInfo.h

28 lines
524 B
C
Raw Normal View History

2023-07-27 09:20:00 +08:00
//
// BottleInfo.h
// TreeHole
//
// Created by mambaxie on 2022/4/29.
//
#import <Foundation/Foundation.h>
#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