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.
35 lines
684 B
35 lines
684 B
// |
|
// WXYZ_TickectAlertModel.h |
|
// WXReader |
|
// |
|
// Created by LL on 2020/6/1. |
|
// Copyright © 2020 Andrew. All rights reserved. |
|
// |
|
|
|
#import <Foundation/Foundation.h> |
|
|
|
@class WXYZ_TickectAlertItemsModel; |
|
|
|
NS_ASSUME_NONNULL_BEGIN |
|
|
|
@interface WXYZ_TickectAlertModel : NSObject |
|
|
|
@property (nonatomic, copy) NSString *title; |
|
|
|
@property (nonatomic, copy) NSArray<NSString *> *desc; |
|
|
|
@property (nonatomic, copy) NSArray<WXYZ_TickectAlertItemsModel *> *items; |
|
|
|
@end |
|
|
|
|
|
@interface WXYZ_TickectAlertItemsModel : NSObject |
|
|
|
@property (nonatomic, copy) NSString *title; |
|
|
|
/// 动作 recharge去充值 exchange金币抵扣 |
|
@property (nonatomic, copy) NSString *action; |
|
|
|
@end |
|
|
|
NS_ASSUME_NONNULL_END
|
|
|