1234567891011121314151617181920212223242526272829303132333435 |
- //
- // YMWealthModel.h
- // MSYOUPAI
- //
- // Created by YoMi on 2024/2/27.
- // Copyright © 2024 MS. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- #import "YMWebUrlModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @class YMAccountModel;
- @interface YMWealthModel : NSObject
- @property (nonatomic, strong) YMAccountModel *account;
- @property (nonatomic, assign) NSInteger cash;
- @property (nonatomic, strong) YMWebUrlModel *webUrl;
- @end
- @interface YMAccountModel: NSObject
- @property (nonatomic, copy) NSString *coin;
- @property (nonatomic, assign) NSInteger free_coin;
- @property (nonatomic, copy) NSString *hebdo_income;
- @property (nonatomic, assign) NSInteger income_coin;
- @property (nonatomic, copy) NSString *income_coin_money;
- @property (nonatomic, copy) NSString *income_money;
- @property (nonatomic, assign) NSInteger love_value;
- @property (nonatomic, copy) NSString *money;
- @property (nonatomic, assign) NSInteger status;
- @property (nonatomic, copy) NSString *today_income;
- @property (nonatomic, assign) NSInteger total_buy_coin;
- @property (nonatomic, copy) NSString *total_buy_money;
- @end
- NS_ASSUME_NONNULL_END
|