Files
yinmeng-ios/xplan-ios/Main/Login/Presenter/LoginPasswordPresent.h
2021-09-10 17:04:18 +08:00

20 lines
384 B
Objective-C

//
// LoginPasswordPresent.h
// xplan-ios
//
// Created by 冯硕 on 2021/9/9.
//
#import "BaseMvpPresenter.h"
NS_ASSUME_NONNULL_BEGIN
@interface LoginPasswordPresent : BaseMvpPresenter
/// 使用手机号和密码登录
/// @param phone 手机号
/// @param password 验证码
- (void)loginWithPhone:(NSString *)phone password:(NSString *)password;
@end
NS_ASSUME_NONNULL_END