From 12510a3469572bf1844f0253e6b3dd879497635b Mon Sep 17 00:00:00 2001 From: nxm777 Date: Tue, 14 Oct 2025 13:45:37 +0200 Subject: [PATCH] Created UserEntity and modified DemoApplication --- src/main/java/com/example/demo/domain/UserEntity.java | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 src/main/java/com/example/demo/domain/UserEntity.java diff --git a/src/main/java/com/example/demo/domain/UserEntity.java b/src/main/java/com/example/demo/domain/UserEntity.java new file mode 100644 index 0000000..59520b3 --- /dev/null +++ b/src/main/java/com/example/demo/domain/UserEntity.java @@ -0,0 +1,4 @@ +package com.example.demo.domain; + +public class UserEntity { +}