diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..ec0b1fe --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,10 @@ +{ + "configurations": [ + { + "type": "java", + "name": "CodeLens (Launch) - Main", + "request": "launch", + "mainClass": "Main" + } + ] +} \ No newline at end of file diff --git a/Java/Account.java b/Java/Account.java new file mode 100644 index 0000000..68958c3 --- /dev/null +++ b/Java/Account.java @@ -0,0 +1,7 @@ +class Account { + Integer id; + String name; + String document; + String email; + String password; +} \ No newline at end of file diff --git a/Java/Car.java b/Java/Car.java new file mode 100644 index 0000000..f3f32a0 --- /dev/null +++ b/Java/Car.java @@ -0,0 +1,6 @@ +class Car { + Integer id; + String license; + String driver; + Integer passegenger; +} \ No newline at end of file diff --git a/Java/Main.java b/Java/Main.java new file mode 100644 index 0000000..d34ebd4 --- /dev/null +++ b/Java/Main.java @@ -0,0 +1,5 @@ +class Main { + public static void main(String[] args) { + System.out.println("Hola Mundo"); + } +} \ No newline at end of file diff --git a/Java/Payment.java b/Java/Payment.java new file mode 100644 index 0000000..8620a91 --- /dev/null +++ b/Java/Payment.java @@ -0,0 +1,3 @@ +class Payment { + Integer id; +} \ No newline at end of file diff --git a/Java/Route.java b/Java/Route.java new file mode 100644 index 0000000..f6ce2ba --- /dev/null +++ b/Java/Route.java @@ -0,0 +1,7 @@ +import java.util.ArrayList; + +class Route { + Integer id; + ArrayList start; + ArrayList end; +} \ No newline at end of file