CNLivePlayerDBModel.h
569 Bytes
//
// CNLivePlayerDBModel.h
// CNLivePlayer_Example
//
// Created by CNLive-zxw on 2019/8/19.
// Copyright © 2019 153993236@qq.com. All rights reserved.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
@interface CNLivePlayerDBModel : NSObject
//contentId:rate
@property (nullable, nonatomic, copy) NSString *contentId;
@property (nullable, nonatomic, copy) NSString *url;
@property (nonatomic, assign) BOOL finish;
- (CNLivePlayerDBModel *)initWithContenId:(NSString *)contentId url:(NSString *)url;
- (BOOL)isEmpty;
@end
NS_ASSUME_NONNULL_END