23 lines
428 B
Objective-C
23 lines
428 B
Objective-C
//
|
|
// HBMultiLanguageController.h
|
|
// QinJiuTV
|
|
//
|
|
// Created by HI_LOSER on 2024/5/6.
|
|
//
|
|
|
|
#import "HBViewController.h"
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface HBMultiLanguageController : HBViewController
|
|
@property (strong, nonatomic) NSArray<HBLanguageModel*> * models;
|
|
@end
|
|
|
|
@interface HBMultiLanguageCollectionViewCell : UICollectionViewCell
|
|
@property (strong, nonatomic) HBLanguageModel * model;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|