Adding ASVideoPlayerNode

This commit is contained in:
Erekle
2016-05-14 16:41:32 +04:00
committed by Max Gu
parent b3360a5daf
commit 8c8fc3dba0
22 changed files with 974 additions and 84 deletions

View File

@@ -0,0 +1,16 @@
//
// VideoModel.h
// Sample
//
// Created by Erekle on 5/14/16.
// Copyright © 2016 Facebook. All rights reserved.
//
#import <Foundation/Foundation.h>
@interface VideoModel : NSObject
@property (nonatomic, strong, readonly) NSString* title;
@property (nonatomic, strong, readonly) NSURL *url;
@property (nonatomic, strong, readonly) NSString *userName;
@property (nonatomic, strong, readonly) NSURL *avatarUrl;
@end