All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.imsweb.seerapi.client.disease.SiteRange Maven / Gradle / Ivy

There is a newer version: 5.7
Show newest version
/*
 * Copyright (C) 2013 Information Management Services, Inc.
 */
package com.imsweb.seerapi.client.disease;

import com.fasterxml.jackson.annotation.JsonProperty;

public class SiteRange {

    @JsonProperty("low")
    protected String _low;
    @JsonProperty("high")
    protected String _high;

    public SiteRange() {
    }

    public SiteRange(String low, String high) {
        _low = low;
        _high = high;
    }

    public String getLow() {
        return _low;
    }

    public void setLow(String low) {
        _low = low;
    }

    public String getHigh() {
        return _high;
    }

    public void setHigh(String high) {
        _high = high;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy