YMFeesSettingPriceModel.h 831 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // YMFeesSettingPriceModel.h
  3. // MSYOUPAI
  4. //
  5. // Created by YoMi on 2024/2/23.
  6. // Copyright © 2024 MS. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @class YMFeesPriceModel;
  11. @interface YMFeesSettingPriceModel : NSObject
  12. @property (nonatomic, assign) NSInteger star_grade;
  13. @property (nonatomic, strong) NSArray<YMFeesPriceModel *> *chat;
  14. @property (nonatomic, strong) NSArray<YMFeesPriceModel *> *voice;
  15. @property (nonatomic, strong) NSArray<YMFeesPriceModel *> *video;
  16. @end
  17. @interface YMFeesPriceModel: NSObject
  18. @property (nonatomic, assign) NSInteger coins;
  19. @property (nonatomic, copy) NSString *content;
  20. @property (nonatomic, assign) NSInteger price_id;
  21. @property (nonatomic, assign) NSInteger star_grade;
  22. @property (nonatomic, assign) NSInteger status;
  23. @end
  24. NS_ASSUME_NONNULL_END