| 1234567891011121314151617181920 |
- //
- // CoolIjkOption.h
- // flutter_ijkplayer
- //
- // Created by Caijinglong on 2019/4/12.
- //
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface CoolIjkOption : NSObject
- @property(nonatomic,assign) int type;
- @property(nonatomic,copy) NSString *key;
- @property(nonatomic,copy) id value;
- @end
- NS_ASSUME_NONNULL_END
|