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

com.testvagrant.monitor.requests.Screenshot Maven / Gradle / Ivy

The newest version!
package com.testvagrant.monitor.requests;

public class Screenshot {

    private String fileName;
    private byte[] data;

    public String getFileName() {
        return fileName;
    }

    public void setFileName(String fileName) {
        this.fileName = fileName;
    }

    public byte[] getData() {
        return data;
    }

    public void setData(byte[] data) {
        this.data = data;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy