1234567891011121314151617 |
- //
- // MultiFactorBaseModel.h
- // MultiFactorFacade
- //
- // Created by wangsizhe on 2022/6/1.
- // Copyright © 2022 DTF. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface MultiFactorBaseModel : NSObject
- - (id)initWithDictionary:(NSDictionary *)dic;
- @end
- NS_ASSUME_NONNULL_END
|