mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-02-15 13:36:31 +00:00
19 lines
476 B
Java
19 lines
476 B
Java
![]() |
package com.earth2me.essentials.settings;
|
||
|
|
||
|
import com.earth2me.essentials.storage.MapValueType;
|
||
|
import com.earth2me.essentials.storage.StorageObject;
|
||
|
import java.util.HashMap;
|
||
|
import java.util.Map;
|
||
|
import lombok.Data;
|
||
|
import lombok.EqualsAndHashCode;
|
||
|
import org.bukkit.Location;
|
||
|
|
||
|
|
||
|
@Data
|
||
|
@EqualsAndHashCode(callSuper = false)
|
||
|
public class Jails implements StorageObject
|
||
|
{
|
||
|
@MapValueType(Location.class)
|
||
|
private Map<String, Location> jails = new HashMap<String, Location>();
|
||
|
}
|