17 lines
328 B
Objective-C
17 lines
328 B
Objective-C
//
|
|
// XPHomeLittleGameTableViewCell.h
|
|
// xplan-ios
|
|
//
|
|
// Created by 冯硕 on 2022/3/24.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
@class HomeLittleGameRoomModel;
|
|
@interface XPHomeLittleGameTableViewCell : UITableViewCell
|
|
@property (nonatomic,strong) HomeLittleGameRoomModel *gameInfo;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|