export interface Mapper<DOMAIN, INFRA> {
  mapFrom(param: DOMAIN): INFRA;
  mapTo(param: INFRA): DOMAIN;
}
