AmountUnitTotalDTO.java

package com.tradecloud.dto.api.report;

import com.tradecloud.schema.CurrencyType;

public class AmountUnitTotalDTO {

    private CurrencyType unit;
    private CurrencyType total;

    public AmountUnitTotalDTO() {
    }

    public AmountUnitTotalDTO(CurrencyType unit, CurrencyType total) {
        this.unit = unit;
        this.total = total;
    }

    public CurrencyType getUnit() {
        return unit;
    }

    public void setUnit(CurrencyType unit) {
        this.unit = unit;
    }

    public CurrencyType getTotal() {
        return total;
    }

    public void setTotal(CurrencyType total) {
        this.total = total;
    }
}