Files
yuyin_ios/SweetParty/主类/狸猫新增/相亲房/LMSpecialGiftModel.h

25 lines
511 B
C
Raw Normal View History

2025-08-08 11:05:33 +08:00
//
// 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