21 lines
416 B
Objective-C
21 lines
416 B
Objective-C
//
|
|
// SCLiveItemModel.h
|
|
// SellyCloudSDK_Example
|
|
//
|
|
// Created by Caleb on 21/7/25.
|
|
// Copyright © 2025 Caleb. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface SCLiveItemModel : NSObject
|
|
@property (nonatomic, assign)NSInteger type;
|
|
@property (nonatomic, strong)NSString *title;
|
|
|
|
@property (nonatomic, strong)void(^clickCallback)(void);
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|