19 lines
377 B
C
19 lines
377 B
C
|
|
//
|
||
|
|
// BottleUserNearbyTableViewCell.h
|
||
|
|
// TreeHole
|
||
|
|
//
|
||
|
|
// Created by 郑创权 on 2022/10/7.
|
||
|
|
//
|
||
|
|
|
||
|
|
#import <UIKit/UIKit.h>
|
||
|
|
#import "userNearbyModel.h"
|
||
|
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
|
||
|
|
@interface BottleUserNearbyTableViewCell : UITableViewCell
|
||
|
|
|
||
|
|
@property (nonatomic, strong)userNearbyModel* dataModel;
|
||
|
|
@property (nonatomic, strong)NSDictionary* shaiXuanDict;
|
||
|
|
@end
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_END
|