Merge remote-tracking branch 'origin/dev' into dev

This commit is contained in:
2025-10-01 10:56:39 +02:00
2 changed files with 52 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
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;
}
}