music_obj.h 847 B

123456789101112131415161718192021222324
  1. //
  2. // music_obj.h
  3. // BuguLive
  4. //
  5. // Created by bugu on 2019/5/23.
  6. // Copyright © 2019年 xfg. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface music_obj : NSObject
  10. @property (nonatomic, copy)NSString *id/*音乐id*/,
  11. *music_name/*音乐名称*/,
  12. *music_url/*音乐地址*/,
  13. *cover/*封面*/,
  14. *music_time/*时间*/,
  15. *music_author/*作者*/,
  16. *localPatch,
  17. *video_type;
  18. @property (nonatomic, assign)int is_collection/*是否收藏*/,
  19. has_next,
  20. page;
  21. @property (nonatomic, assign) BOOL isselect;
  22. @end