com.imsweb.algorithms.countyatdiagnosisanalysis.CountyAtDxAnalysisOutputDto Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of algorithms Show documentation
Show all versions of algorithms Show documentation
Java implementation of cancer-related algorithms (NHIA, NAPIIA, Survival Time, etc...)
/*
* Copyright (C) 2019 Information Management Services, Inc.
*/
package com.imsweb.algorithms.countyatdiagnosisanalysis;
public class CountyAtDxAnalysisOutputDto {
private String _countyAtDxAnalysis;
private String _countyAtDxAnalysisFlag;
public String getCountyAtDxAnalysis() {
return _countyAtDxAnalysis;
}
public void setCountyAtDxAnalysis(String countyAtDxAnalysis) {
_countyAtDxAnalysis = countyAtDxAnalysis;
}
public String getCountyAtDxAnalysisFlag() {
return _countyAtDxAnalysisFlag;
}
public void setCountyAtDxAnalysisFlag(String countyAtDxAnalysisFlag) {
_countyAtDxAnalysisFlag = countyAtDxAnalysisFlag;
}
}