24 lines
510 B
Objective-C
Executable File
24 lines
510 B
Objective-C
Executable File
//
|
|
// YYJYSimiGiftModel.h
|
|
// YaYin
|
|
//
|
|
// Created by bj_szd on 2023/7/27.
|
|
// Copyright © 2023 YaYin. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface YYJYSimiGiftModel : NSObject
|
|
|
|
@property (nonatomic, copy) NSString *gid;
|
|
@property (nonatomic, assign) NSInteger duration;//时长
|
|
@property (nonatomic, copy) NSString *gift_name;
|
|
@property (nonatomic, copy) NSString *base_image;
|
|
@property (nonatomic, copy) NSString *gift_price;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|