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

com.foreach.imageserver.dto.ModificationStatusDto Maven / Gradle / Ivy

package com.foreach.imageserver.dto;

public class ModificationStatusDto
{
	private String imageId;
	private boolean modified;

	public String getImageId() {
		return imageId;
	}

	public void setImageId( String imageId ) {
		this.imageId = imageId;
	}

	public boolean isModified() {
		return modified;
	}

	public void setModified( boolean modified ) {
		this.modified = modified;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy