// // YMFeesSettingPriceModel.h // MSYOUPAI // // Created by YoMi on 2024/2/23. // Copyright © 2024 MS. All rights reserved. // #import NS_ASSUME_NONNULL_BEGIN @class YMFeesPriceModel; @interface YMFeesSettingPriceModel : NSObject @property (nonatomic, assign) NSInteger star_grade; @property (nonatomic, strong) NSArray *chat; @property (nonatomic, strong) NSArray *voice; @property (nonatomic, strong) NSArray *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