001package io.ebeaninternal.xmapping.api;
002
003import java.util.ArrayList;
004import java.util.List;
005
006/**
007 * External mapping for Entity and DTO beans.
008 */
009public class XmapEbean {
010
011  protected final List<XmapEntity> entity = new ArrayList<>();
012  protected final List<XmapDto> dto = new ArrayList<>();
013
014  public List<XmapEntity> getEntity() {
015    return entity;
016  }
017
018  public List<XmapDto> getDto() {
019    return dto;
020  }
021
022}