Skip to content

Commit

Permalink
Clases
Browse files Browse the repository at this point in the history
  • Loading branch information
anncode1 committed Jan 2, 2019
0 parents commit 492e5c5
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Python/account.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
class Account:
id = int
name = str
document = str
email = str
password = str
5 changes: 5 additions & 0 deletions Python/car.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
class Car:
id = int
license = str
driver = str
passegenger = int
2 changes: 2 additions & 0 deletions Python/main.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
if __name__ == "__main__":
print("Hola Mundo")
2 changes: 2 additions & 0 deletions Python/payment.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
class Payment:
id = int
4 changes: 4 additions & 0 deletions Python/route.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
class Route:
id = int
start = []
end = []

0 comments on commit 492e5c5

Please sign in to comment.