25 lines
538 B
Objective-C
25 lines
538 B
Objective-C
//
|
|
// YYXQYueTAModel.h
|
|
// YaYin
|
|
//
|
|
// Created by bj_szd on 2023/10/11.
|
|
// Copyright © 2023 YaYin. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface YYXQYueTAModel : NSObject
|
|
|
|
@property (nonatomic,copy) NSString *uid;
|
|
@property (nonatomic,copy) NSString *nick_name;
|
|
@property (nonatomic,copy) NSString *head_pic;
|
|
@property (nonatomic,copy) NSString *gift_name;
|
|
@property (nonatomic,copy) NSString *base_image;
|
|
@property (nonatomic,copy) NSString *gift_price;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|