CNLiveOwner.h
473 Bytes
//
// CNLiveOwner.h
// CNLiveUploadYunSDK
//
// Created by 张旭 on 2017/8/24.
// Copyright © 2017年 cnlive. All rights reserved.
//
#import <Foundation/Foundation.h>
@interface CNLiveOwner : NSObject
@property(strong, nonatomic) NSString *ID;
@property(strong, nonatomic) NSString *displayName;
- (id)initWithID:(NSString *)theID withDisplayName:(NSString *)theDisplayName;
+ (id)ownerWithID:(NSString *)theID withDisplayName:(NSString *)theDisplayName;
@end