FileSetItemModel.h 723 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // FileSetItemModel.h
  3. // BuguLive
  4. //
  5. // Created by xfg on 16/7/30.
  6. // Copyright © 2016年 xfg. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface PlaySetModel : NSObject
  10. @property (nonatomic, assign) NSInteger definition;
  11. @property (nonatomic, copy) NSString *url;
  12. @end
  13. @interface FileSetItemModel : NSObject
  14. @property (nonatomic, assign) NSInteger duration;
  15. @property (nonatomic, copy) NSString *fileId;
  16. @property (nonatomic, copy) NSString *fileName;
  17. @property (nonatomic, copy) NSString *image_url;
  18. @property (nonatomic, assign) NSInteger status;
  19. @property (nonatomic, copy) NSString *vid;
  20. @property (nonatomic, strong) NSMutableArray *playSet;
  21. @end