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.
28 lines
551 B
28 lines
551 B
// |
|
// WXYZ_GiftMonthlyPassView.h |
|
// WXReader |
|
// |
|
// Created by LL on 2020/5/28. |
|
// Copyright © 2020 Andrew. All rights reserved. |
|
// |
|
|
|
#import <UIKit/UIKit.h> |
|
|
|
@class WXYZ_GiftView; |
|
|
|
@class TFProductionModel; |
|
|
|
NS_ASSUME_NONNULL_BEGIN |
|
|
|
@interface WXYZ_GiftMonthlyPassView : UIView |
|
|
|
- (instancetype)initWithFrame:(CGRect)frame bookModel:(TFProductionModel *)bookModel; |
|
|
|
/// 月票余额返回 |
|
@property (nonatomic, copy) void(^ticketNumBlock)(NSInteger ticketNumber); |
|
|
|
@property (nonatomic, weak) WXYZ_GiftView *giftView; |
|
|
|
@end |
|
|
|
NS_ASSUME_NONNULL_END
|
|
|