BogoVideoModel.h 712 B

12345678910111213141516171819202122232425262728
  1. //
  2. // BogoVideoModel.h
  3. // BuguLive
  4. //
  5. // Created by 宋晨光 on 2021/4/20.
  6. // Copyright © 2021 xfg. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface BogoVideoModel : NSObject
  11. + (NSArray<BogoVideoModel *> *)testItems;
  12. + (NSArray<BogoVideoModel *> *)testItemsWithCount:(NSInteger)count;
  13. + (instancetype)testItem;
  14. @property (nonatomic) NSInteger id;
  15. @property (nonatomic, copy, nullable) NSString *mediaTitle;
  16. @property (nonatomic, copy, nullable) NSString *cover;
  17. @property (nonatomic, copy, nullable) NSString *avatar;
  18. @property (nonatomic, copy, nullable) NSString *username;
  19. @property (nonatomic, strong, nullable) NSURL *URL;
  20. @end
  21. NS_ASSUME_NONNULL_END