25 lines
511 B
Objective-C
25 lines
511 B
Objective-C
//
|
|
// LMSpecialGiftModel.h
|
|
// SweetParty
|
|
//
|
|
// Created by Xmac on 2024/8/29.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface LMSpecialGiftModel : NSObject
|
|
|
|
@property (nonatomic, strong) NSString *gid;
|
|
@property (nonatomic, strong) NSString *gift_price;
|
|
@property (nonatomic, strong) NSString *base_image;
|
|
@property (nonatomic, strong) NSString *gift_name;
|
|
@property (nonatomic, strong) NSString *tag_name;
|
|
|
|
@property (nonatomic, assign) BOOL isSelect;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|