// // TFPushSetModel.h // WXReader // // Created by 谢腾飞 on 2020/12/2. // Copyright © 2020 xtfei_2011@126.com. All rights reserved. // #import NS_ASSUME_NONNULL_BEGIN @interface TFPushSetModel : NSObject @property (nonatomic ,copy) NSString *label; // 名称 @property (nonatomic ,copy) NSString *push_key; // 开关对应key @property (nonatomic ,assign) NSInteger status; // 状态 1-开启 0-关闭(后端默认开启) @end NS_ASSUME_NONNULL_END