001package org.hl7.fhir.r5.conformance.profile;
002
003import org.hl7.fhir.r5.model.ElementDefinition;
004import org.hl7.fhir.utilities.MarkedToMoveToAdjunctPackage;
005
006@MarkedToMoveToAdjunctPackage
007public class TypeSlice {
008  protected ElementDefinition defn;
009  protected String type;
010
011  public TypeSlice(ElementDefinition defn, String type) {
012    super();
013    this.defn = defn;
014    this.type = type;
015  }
016
017  public ElementDefinition getDefn() {
018    return defn;
019  }
020
021  public String getType() {
022    return type;
023  }
024
025}