package org.msh.tb.cases.summary;

import java.util.Date;

/**
 * Created by rmemoria on 5/2/17.
 */
public class WeightSummary {

    private Date date;
    private double weight;

    public WeightSummary(Date date, double weight) {
        this.date = date;
        this.weight = weight;
    }

    public Date getDate() {
        return date;
    }

    public void setDate(Date date) {
        this.date = date;
    }

    public double getWeight() {
        return weight;
    }

    public void setWeight(double weight) {
        this.weight = weight;
    }
}
