24 lines
365 B
Objective-C
24 lines
365 B
Objective-C
//
|
|
// SellyRtcVideoCanvas.h
|
|
// SellyCloudSDK
|
|
//
|
|
// Created by Caleb on 11/11/25.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface SellyRtcVideoCanvas : NSObject
|
|
//用户id
|
|
@property(strong, nonatomic) NSString *userId;
|
|
|
|
/**
|
|
*The video display view.
|
|
*/
|
|
@property(strong, nonatomic) UIView *_Nullable view;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|