feat: add arch

This commit is contained in:
Yashar Panahi
2025-08-02 12:31:42 +03:30
parent 59c3091b2f
commit 64c4ebf0f8
12 changed files with 231 additions and 110 deletions
+6
View File
@@ -0,0 +1,6 @@
class UserModel {
final String token;
final String name;
UserModel({required this.token, required this.name});
}