19 lines
330 B
Objective-C
19 lines
330 B
Objective-C
//
|
|
// SellyPlayerStreamInfo.h
|
|
// SellyCloudSDK
|
|
//
|
|
// Created by Caleb on 18/9/25.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface SellyPlayerStreamInfo : NSObject
|
|
@property (nonatomic, strong)NSString *streamId;
|
|
//rtmp,rtc
|
|
@property (nonatomic, strong)NSString *protocol;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|