123456789101112131415161718192021222324252627282930 |
- //
- // YMFeesSettingPriceModel.h
- // MSYOUPAI
- //
- // Created by YoMi on 2024/2/23.
- // Copyright © 2024 MS. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- @class YMFeesPriceModel;
- @interface YMFeesSettingPriceModel : NSObject
- @property (nonatomic, assign) NSInteger star_grade;
- @property (nonatomic, strong) NSArray<YMFeesPriceModel *> *chat;
- @property (nonatomic, strong) NSArray<YMFeesPriceModel *> *voice;
- @property (nonatomic, strong) NSArray<YMFeesPriceModel *> *video;
- @end
- @interface YMFeesPriceModel: NSObject
- @property (nonatomic, assign) NSInteger coins;
- @property (nonatomic, copy) NSString *content;
- @property (nonatomic, assign) NSInteger price_id;
- @property (nonatomic, assign) NSInteger star_grade;
- @property (nonatomic, assign) NSInteger status;
- @end
- NS_ASSUME_NONNULL_END
|