123456789101112131415161718192021 |
- //
- // YOUPAILZMusicArtistModel.h
- // VQU
- //
- // Created by CY on 2021/6/25.
- // Copyright © 2021 leo. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface YOUPAILZMusicArtistModel : NSObject
- @property (nonatomic, strong) NSString *youpaipname; // 表演者
- @property (nonatomic, strong) NSString *youpaipcode; // 表演者编号
- @property (nonatomic, strong) NSString *youpaipavatar; // 表演者头像
- @end
- NS_ASSUME_NONNULL_END
|