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

io.github.icodegarden.nutrient.lang.registry.SimpleRegistrationDO Maven / Gradle / Ivy

There is a newer version: 3.0.2
Show newest version
package io.github.icodegarden.nutrient.lang.registry;

import lombok.Getter;
import lombok.Setter;
import lombok.ToString;

/**
 * 
 * @author Fangfang.Xu
 *
 */
@Getter
@Setter
@ToString
public class SimpleRegistrationDO {

	private ID id;
	private Integer index;
	
	public SimpleRegistrationDO(ID id, Integer index) {
		super();
		this.id = id;
		this.index = index;
	}
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy