12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- //
- // YMAppConfigModel.h
- // MSYOUPAI
- //
- // Created by YoMi on 2024/2/15.
- // Copyright © 2024 MS. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- #import "YMWebUrlModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @class YMConfigModel,YMDressModel,YMBubbleModel,YMWxInfoModel,YMVersionModel;
- @interface YMAppConfigModel : NSObject
- @property (nonatomic, strong) YMDressModel *dress;
- @property (nonatomic, strong) YMConfigModel *config;
- @property (nonatomic, strong) YMVersionModel *version;
- @property (nonatomic, strong) YMWebUrlModel *webUrl;
- @property (nonatomic, copy) NSString *rank_url;
- @property (nonatomic, copy) NSString *rank_url_full;
- @property (nonatomic, strong) NSArray<NSString *> *switchs;
- @end
- @interface YMDressModel: NSObject
- @property (nonatomic, strong) NSArray<YMBubbleModel *> *bubble;
- @end
- @interface YMBubbleModel: NSObject
- @property (nonatomic, copy) NSString *bubble;
- @end
- @interface YMConfigModel: NSObject
- @property (nonatomic, copy) NSString *appurl;
- @property (nonatomic, assign) NSInteger audit_status;
- @property (nonatomic, strong) NSArray<NSNumber *> *extraId;
- @property (nonatomic, assign) NSInteger free;
- @property (nonatomic, copy) NSString *gateway;
- @property (nonatomic, copy) NSString *image_server;
- @property (nonatomic, assign) NSInteger is_audio_video_mini;
- @property (nonatomic, copy) NSString *is_live;
- @property (nonatomic, strong) NSArray<NSString *> *no_info;
- @property (nonatomic, strong) NSArray<NSString *> *serviceId;
- @property (nonatomic, copy) NSString *servId;
- @property (nonatomic, copy) NSString *switch_index;
- @property (nonatomic, copy) NSString *sysId;
- @property (nonatomic, copy) NSString *timeOut;
- @property (nonatomic, strong) NSArray<NSString *> *top_list;
- @property (nonatomic, assign) BOOL video_block;
- @property (nonatomic, copy) NSString *vt_watermark_open;
- @property (nonatomic, copy) NSString *wechat_open;
- @property (nonatomic, assign) NSInteger woman_hang_up_tips;
- @property (nonatomic, strong) YMWxInfoModel *wx_info;
- @property (nonatomic, copy) NSString *cooperationId; //合作洽谈
- @end
- @interface YMWxInfoModel: NSObject
- @property (nonatomic, copy) NSString *gz_image;
- @property (nonatomic, copy) NSString *qr_image;
- @end
- @interface YMVersionModel: NSObject
- @property (nonatomic, copy) NSString *downloadurl;
- @property (nonatomic, copy) NSString *enforce;
- @property (nonatomic, copy) NSString *newversion;
- @property (nonatomic, copy) NSString *packagesize;
- @property (nonatomic, copy) NSString *upgradetext;
- @property (nonatomic, copy) NSString *version;
- @property (nonatomic, copy) NSString *versioncode;
- @end
- NS_ASSUME_NONNULL_END
|