Files
yuyin_ios/SweetParty/主类/音悦新增/K歌厅/RoomSongListCell.h

27 lines
645 B
C
Raw Permalink Normal View History

2025-08-08 11:05:33 +08:00
//
// RoomSongListCell.h
// romantic
//
// Created by 八角_马方圆 on 2021/12/30.
// Copyright © 2021 romantic. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "RoomSongListModel.h"
NS_ASSUME_NONNULL_BEGIN
@interface RoomSongListCell : UITableViewCell
@property (weak, nonatomic) IBOutlet UIImageView *imgV;
@property (weak, nonatomic) IBOutlet UILabel *titleLab;
@property (weak, nonatomic) IBOutlet UILabel *singerLab;
@property (weak, nonatomic) IBOutlet UIButton *diangeBtn;
@property (weak, nonatomic) IBOutlet UIButton *qingchangBtn;
@property(nonatomic, strong)RoomSongListModel *model;
@end
NS_ASSUME_NONNULL_END