package eu.dnetlib.goldoa.domain;

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

/**
 * Created by antleb on 4/3/15.
 */
public class BudgetFile implements IsSerializable {

    private String contentType;
    private byte[] content;

    public BudgetFile(String contentType, byte[] content) {
        this.contentType = contentType;
        this.content = content;
    }

    public BudgetFile() {
    }

    public String getContentType() {
        return contentType;
    }

    public void setContentType(String contentType) {
        this.contentType = contentType;
    }

    public byte[] getContent() {
        return content;
    }

    public void setContent(byte[] content) {
        this.content = content;
    }
}
