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

org.ligoj.app.plugin.vm.snapshot.VolumeSnapshot Maven / Gradle / Ivy

The newest version!
/*
 * Licensed under MIT (https://github.com/ligoj/ligoj/blob/master/LICENSE)
 */
package org.ligoj.app.plugin.vm.snapshot;

import org.ligoj.bootstrap.core.NamedBean;

import lombok.Getter;
import lombok.Setter;

/**
 * A volume snapshot. The name attribute corresponds to the device name.
 */
@Getter
@Setter
public class VolumeSnapshot extends NamedBean {

	/**
	 * SID
	 */
	private static final long serialVersionUID = 1L;

	/**
	 * GiB volume size
	 */
	private int size;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy