21 lines
505 B
Objective-C
21 lines
505 B
Objective-C
//
|
|
// TFPushSetModel.h
|
|
// WXReader
|
|
//
|
|
// Created by 谢腾飞 on 2020/12/2.
|
|
// Copyright © 2020 xtfei_2011@126.com. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
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
|