ModifyPwdViewController.h 486 Bytes
//
//  ModifyPwdViewController.h
//  CNLiveUserSystemDemo
//
//  Created by 张旭 on 2017/5/27.
//  Copyright © 2017年 zhulin. All rights reserved.
//

#import <UIKit/UIKit.h>

typedef NS_ENUM(NSInteger, ModifyPwdType) {//枚举类型
    ModifyPwdTypeEmail           = 1,//通过邮箱修改密码
    ModifyPwdTypeOldPwd              //通过原密码修改密码
};


@interface ModifyPwdViewController : UIViewController

@property (nonatomic ,assign) ModifyPwdType   type;
@end