25 lines
537 B
Objective-C
25 lines
537 B
Objective-C
//
|
|
// WLStakeRecordModel.h
|
|
// romantic
|
|
//
|
|
// Created by Xmac on 2024/4/22.
|
|
// Copyright © 2024 romantic. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface WLStakeRecordModel : NSObject
|
|
|
|
@property (nonatomic, copy) NSString *id;
|
|
@property (nonatomic, copy) NSString *win_type;
|
|
@property (nonatomic, copy) NSString *type_name;
|
|
@property (nonatomic, copy) NSString *add_time;
|
|
@property (nonatomic, copy) NSString *is_join; //1已中奖 2未中奖 3未参与
|
|
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|