| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- //
- // VCCommon.m
- // VCDemo
- //
- // Created by kennethmiao on 16/10/18.
- // Copyright © 2016年 kennethmiao. All rights reserved.
- //
- #import "TVCCommon.h"
- @implementation TVCConfig
- - (instancetype)init
- {
- self = [super init];
- if (self) {
- _signature = @"";
- _userID = @"";
- }
- return self;
- }
- @end
- @implementation TVCUploadParam
- - (instancetype)init
- {
- self = [super init];
- if (self) {
- _videoPath = @"";
- _coverPath = @"";
- _videoName = @"";
- }
- return self;
- }
- @end
- @implementation TVCUploadResponse
- @end
|