A claim plugin based on FTB Chunks
at master 619 B view raw
1package dev.keii.keiichunks.saveload; 2 3public class Claim { 4 public long id; 5 public long userId; 6 public long chunkX; 7 public long chunkZ; 8 public String createdAt; 9 public String updatedAt; 10 public boolean allowExplosions; 11 12 public Claim(long id, long userId, long chunkX, long chunkZ, String createdAt, String updatedAt, boolean allowExplosions) 13 { 14 this.id = id; 15 this.userId = userId; 16 this.chunkX = chunkX; 17 this.chunkZ = chunkZ; 18 this.createdAt = createdAt; 19 this.updatedAt = updatedAt; 20 this.allowExplosions = allowExplosions; 21 } 22}