MultiFactorBaseModel.h 322 B

1234567891011121314151617
  1. //
  2. // MultiFactorBaseModel.h
  3. // MultiFactorFacade
  4. //
  5. // Created by wangsizhe on 2022/6/1.
  6. // Copyright © 2022 DTF. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface MultiFactorBaseModel : NSObject
  11. - (id)initWithDictionary:(NSDictionary *)dic;
  12. @end
  13. NS_ASSUME_NONNULL_END