提交
This commit is contained in:
41
QXLive/Mine(音域)/Model/QXSongListModel.h
Normal file
41
QXLive/Mine(音域)/Model/QXSongListModel.h
Normal file
@@ -0,0 +1,41 @@
|
||||
//
|
||||
// QXSongListModel.h
|
||||
// QXLive
|
||||
//
|
||||
// Created by 启星 on 2025/6/17.
|
||||
//
|
||||
|
||||
#import <Foundation/Foundation.h>
|
||||
|
||||
NS_ASSUME_NONNULL_BEGIN
|
||||
|
||||
@interface QXSongListModel : NSObject
|
||||
/// 已点歌曲id
|
||||
@property(nonatomic, copy)NSString *did;
|
||||
/// 歌曲code
|
||||
@property(nonatomic, assign)NSInteger song_code;
|
||||
/// 歌曲名称
|
||||
@property(nonatomic, copy)NSString *song_name;
|
||||
/// 演唱者
|
||||
@property(nonatomic, copy)NSString *singer;
|
||||
/// 歌曲封面
|
||||
@property(nonatomic, copy)NSString *poster;
|
||||
/// 歌曲时长
|
||||
@property(nonatomic, assign)NSInteger duration;
|
||||
/// 当前歌曲位置
|
||||
@property(nonatomic, assign)NSInteger num;
|
||||
|
||||
|
||||
/// 点唱用户id
|
||||
@property(nonatomic, copy)NSString *user_id;
|
||||
/// 点唱用户昵称
|
||||
@property(nonatomic, copy)NSString *nickname;
|
||||
/// 点唱用户头像
|
||||
@property(nonatomic, copy)NSString *avatar;
|
||||
/// 点唱用户装扮
|
||||
@property(nonatomic, copy)NSString *dress;
|
||||
/// 用户魅力
|
||||
@property(nonatomic, copy)NSString *charm;
|
||||
@end
|
||||
|
||||
NS_ASSUME_NONNULL_END
|
||||
Reference in New Issue
Block a user