30 lines
649 B
Objective-C
30 lines
649 B
Objective-C
//
|
|
// XPStarredKitchenModel.h
|
|
// xplan-ios
|
|
//
|
|
// Created by 冯硕 on 2023/2/13.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface XPStarredKitchenModel : NSObject
|
|
///送礼物的人
|
|
@property(nonatomic, copy) NSString *nick;
|
|
///uid
|
|
@property(nonatomic, copy) NSString *uid;
|
|
///房主的Uid
|
|
@property(nonatomic, copy) NSString *roomUid;
|
|
///倍数
|
|
@property (nonatomic,assign) NSInteger itemMultiple;
|
|
///钻石
|
|
@property (nonatomic,assign) NSInteger diamonds;
|
|
///跳转的地址
|
|
@property (nonatomic,copy) NSString *skipUrl;
|
|
///需要的等级
|
|
@property (nonatomic,assign) NSInteger needLevel;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|