feat(model): add initial entity models for restaurant system

This commit is contained in:
2026-06-17 01:39:03 +03:30
parent efc439f926
commit aea9834d13
4 changed files with 58 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
package dev.model;
public class User {
private int id;
private String username;
private String password;
private String email;
}