package eu.dnetlib.goldoa.domain;

import com.google.gwt.user.client.rpc.IsSerializable;

/**
 * Created by antleb on 3/21/15.
 */
public class InvoiceFile implements IsSerializable {
    private String invoice;
    private String mimetype;
    private byte[] file;

    public InvoiceFile() {
    }

    public InvoiceFile(String invoice, String mimetype, byte[] file) {
        this.invoice = invoice;
        this.mimetype = mimetype;
        this.file = file;
    }

    public String getInvoice() {
        return invoice;
    }

    public void setInvoice(String invoice) {
        this.invoice = invoice;
    }

    public String getMimetype() {
        return mimetype;
    }

    public void setMimetype(String mimetype) {
        this.mimetype = mimetype;
    }

    public byte[] getFile() {
        return file;
    }

    public void setFile(byte[] file) {
        this.file = file;
    }
}
