summaryrefslogtreecommitdiff
path: root/entities/location.py
diff options
context:
space:
mode:
Diffstat (limited to 'entities/location.py')
-rw-r--r--entities/location.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/entities/location.py b/entities/location.py
new file mode 100644
index 0000000..8130632
--- /dev/null
+++ b/entities/location.py
@@ -0,0 +1,8 @@
+from entities.basic_entity import BasicEntity
+
+
+class Location(BasicEntity):
+ def __init__(self, name, types, coordinates):
+ self.name = name
+ self.types = types
+ self.coordinates = coordinates