25 lines
520 B
C
25 lines
520 B
C
|
|
//
|
||
|
|
// RoomSongDetailModel.h
|
||
|
|
// romantic
|
||
|
|
//
|
||
|
|
// Created by 八角_马方圆 on 2022/1/5.
|
||
|
|
// Copyright © 2022 romantic. All rights reserved.
|
||
|
|
//
|
||
|
|
|
||
|
|
#import "RoomSongListModel.h"
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
|
||
|
|
@interface RoomSongDetailModel : RoomSongListModel
|
||
|
|
|
||
|
|
@property(nonatomic, copy)NSString *playUrl;
|
||
|
|
@property(nonatomic, copy)NSString *lyric;
|
||
|
|
@property(nonatomic, assign)NSInteger lyricType;
|
||
|
|
@property(nonatomic, assign)NSInteger expiryTime;
|
||
|
|
|
||
|
|
@property(nonatomic, assign)NSInteger position;
|
||
|
|
|
||
|
|
@end
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_END
|