TVCCommon.m 575 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. //
  2. // VCCommon.m
  3. // VCDemo
  4. //
  5. // Created by kennethmiao on 16/10/18.
  6. // Copyright © 2016年 kennethmiao. All rights reserved.
  7. //
  8. #import "TVCCommon.h"
  9. @implementation TVCConfig
  10. - (instancetype)init
  11. {
  12. self = [super init];
  13. if (self) {
  14. _signature = @"";
  15. _userID = @"";
  16. }
  17. return self;
  18. }
  19. @end
  20. @implementation TVCUploadParam
  21. - (instancetype)init
  22. {
  23. self = [super init];
  24. if (self) {
  25. _videoPath = @"";
  26. _coverPath = @"";
  27. _videoName = @"";
  28. }
  29. return self;
  30. }
  31. @end
  32. @implementation TVCUploadResponse
  33. @end