mirror of
https://github.com/dnpm-dip/mv64e-mtb-dto-java.git
synced 2025-07-02 02:32:55 +00:00
19 lines
533 B
Java
19 lines
533 B
Java
package dev.pcvolkmer.mv64e.mtb;
|
|
|
|
import com.fasterxml.jackson.annotation.*;
|
|
|
|
public class CopyNumberNeutralLoH {
|
|
private String ensemblId;
|
|
private String hgncId;
|
|
|
|
@JsonProperty("ensemblId")
|
|
public String getEnsemblId() { return ensemblId; }
|
|
@JsonProperty("ensemblId")
|
|
public void setEnsemblId(String value) { this.ensemblId = value; }
|
|
|
|
@JsonProperty("hgncId")
|
|
public String getHgncId() { return hgncId; }
|
|
@JsonProperty("hgncId")
|
|
public void setHgncId(String value) { this.hgncId = value; }
|
|
}
|