dermy-app/app/src/main/java/xyz/r0r5chach/dermy/entities/Mole.java

22 lines
440 B
Java
Raw Normal View History

2024-06-03 20:56:01 +00:00
package xyz.r0r5chach.dermy.entities;
import java.time.LocalDateTime;
import xyz.r0r5chach.dermy.entities.locations.Location;
import xyz.r0r5chach.dermy.entities.logs.LogBook;
public class Mole {
private Location location;
private LocalDateTime dateCreated;
private LogBook logEntries;
public Location getLocation() {
return location;
}
public LogBook getLogBook() {
return logEntries;
}
}