Delete src/main/java/de/teleportsuite/models/Home.java via Git Manager GUI

This commit is contained in:
2026-05-23 18:08:02 +00:00
parent 7808ecef97
commit 2394ebe031

View File

@@ -1,17 +0,0 @@
package de.teleportsuite.models;
import java.util.UUID;
public class Home {
private final UUID uuid;
private final String name;
private final TeleportLocation location;
public Home(UUID uuid, String name, TeleportLocation location) {
this.uuid = uuid; this.name = name; this.location = location;
}
public UUID getUuid() { return uuid; }
public String getName() { return name; }
public TeleportLocation getLocation() { return location; }
}