//
//  BaseParamsConfig.m
//  testnpm
//
//  Created by Castiel on 2018/4/12.
//  Copyright © 2018年 Facebook. All rights reserved.
//

#import "BaseParamsConfig.h"

@implementation BaseParamsConfig

- (instancetype)initWithDict:(NSDictionary *)dict {
  if (self = [super init]) {
    [self setValuesForKeysWithDictionary:dict];
  }
  return self;
}

@end
