init project setup of the backend with dart and go as well as the frontend with nextjs
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
class User {
|
||||
final String id;
|
||||
final String name;
|
||||
final String email;
|
||||
final String password;
|
||||
|
||||
User({
|
||||
required this.id,
|
||||
required this.name,
|
||||
required this.email,
|
||||
required this.password,
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user