first barebones project structure

This commit is contained in:
2025-10-01 18:27:57 +02:00
parent 5c588c24ba
commit 97f19259ba

View File

@@ -1,17 +0,0 @@
package de.pnreichmuth.timekeep_backend;
import java.util.Date;
public class Testclass {
public String name;
public int counter;
public Date createdAt;
public Date updatedAt;
public Testclass(String name, int counter){
this.name = name;
this.counter = counter;
this.createdAt = new Date();
this.updatedAt = null;
}
}