12345678910111213141516171819202122232425 |
- //
- // YOUPAIMessageTemplateName.h
- // MSYOUPAI
- //
- // Created by admin on 2022/3/16.
- // Copyright © 2022 MS. All rights reserved.
- //
- #import "ZYBaseWindow.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface YOUPAIMessageTemplateName : ZYBaseWindow
- @property(nonatomic,strong)UILabel *youpaipnameLabel;
- @property (nonatomic,strong)UITextField* youpaiptextField;
- @property (nonatomic,strong)UILabel* youpaipremarkLab;
- @property (nonatomic,strong) UIButton* confirmBtn;
- @property (nonatomic,strong) UIButton* cancelBtn;
- @property (nonatomic,copy) void (^commitBlock)(YOUPAIMessageTemplateName *view);
- @end
- NS_ASSUME_NONNULL_END
|