package com.cadrlife.devsearch.esplugin.domain;
public class SourceReference {
private String description;
private String matchKey;
private String id;
public String getDescription() {
return description;
}
public SourceReference setDescription(String description) {
this.description = description;
return this;
}
public String getId() {
return id;
}
public SourceReference setId(String id) {
this.id = id;
return this;
}
public String getMatchKey() {
return matchKey;
}
public SourceReference setMatchKey(String matchKey) {
this.matchKey = matchKey;
return this;
}
}