A claim plugin based on FTB Chunks
1package dev.keii.keiichunks.saveload;
2
3public class ClaimPermission {
4 public long id;
5 public long userId;
6 public long claimId;
7 public boolean blockBreak;
8 public boolean blockPlace;
9 public boolean bucketEmpty;
10 public boolean bucketFill;
11 public boolean interact;
12 public String createdAt;
13 public String updatedAt;
14
15 public ClaimPermission(long id, long userId, long claimId, boolean blockBreak, boolean blockPlace, boolean bucketEmpty, boolean bucketFill, boolean interact, String createdAt, String updatedAt)
16 {
17 this.id = id;
18 this.userId = userId;
19 this.claimId = claimId;
20 this.blockBreak = blockBreak;
21 this.bucketEmpty = bucketEmpty;
22 this.bucketFill = bucketFill;
23 this.interact = interact;
24 this.createdAt = createdAt;
25 this.updatedAt = updatedAt;
26 }
27}