summaryrefslogtreecommitdiff
path: root/src/main/java/dev/deeve/containeraudit/ChestEvent.java
blob: a59e0eab143fce81426c2310c6b61c3b6e371398 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package dev.deeve.containeraudit;

import java.time.LocalDateTime;

public class ChestEvent {
	private int count;
	private String block;
	private int x;
	private int y;
	private int z;
	private String player;
	private String type;
	private LocalDateTime timestamp;
}