From 97f19259ba41b93e527ac6495e805c0e989551a4 Mon Sep 17 00:00:00 2001
From: Paul Reichmuth
Date: Wed, 1 Oct 2025 18:27:57 +0200
Subject: [PATCH] first barebones project structure
---
.../pnreichmuth/timekeep_backend/Testclass.java | 17 -----------------
1 file changed, 17 deletions(-)
delete mode 100644 src/main/java/de/pnreichmuth/timekeep_backend/Testclass.java
diff --git a/src/main/java/de/pnreichmuth/timekeep_backend/Testclass.java b/src/main/java/de/pnreichmuth/timekeep_backend/Testclass.java
deleted file mode 100644
index 075d958..0000000
--- a/src/main/java/de/pnreichmuth/timekeep_backend/Testclass.java
+++ /dev/null
@@ -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;
- }
-}