summaryrefslogtreecommitdiff
path: root/entities/location.py
blob: 9636c3bd379ce4a47eefe3c9c6d585e6806df2c6 (plain)
1
2
3
4
5
6
7
8
from entities.basic_entity import BasicEntity


class Location(BasicEntity):
    def __init__(self, name, types, name_in_langs):
        self.name = name
        self.types = types
        self.name_in_langs = name_in_langs