You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
505 B
20 lines
505 B
// |
|
// 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
|
|
|