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