19 lines
364 B
Objective-C
19 lines
364 B
Objective-C
//
|
|
// SCLiveItemContainerView.h
|
|
// SellyCloudSDK_Example
|
|
//
|
|
// Created by Caleb on 21/7/25.
|
|
// Copyright © 2025 Caleb. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "SCLiveItemModel.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface SCLiveItemContainerView : UIView
|
|
@property (nonatomic, strong)NSArray<SCLiveItemModel *> *models;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|