24 lines
477 B
Objective-C
24 lines
477 B
Objective-C
//
|
|
// THBottleInfoCardContainerView.h
|
|
// TreeHole
|
|
//
|
|
// Created by iOS on 2023/2/9.
|
|
// Copyright © 2023 CYH. All rights reserved.
|
|
//
|
|
|
|
#import "THView.h"
|
|
#import "THBottleInfoModel.h"
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface THBottleInfoCardContainerView : THView
|
|
|
|
///最大布局高度
|
|
//@property(nonatomic, assign)CGFloat maxLayoutHeight;
|
|
@property(nonatomic, strong)THBottleInfoModel *infoModel;
|
|
|
|
//@property(nonatomic, assign)NSInteger source;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|