summaryrefslogtreecommitdiff
path: root/entities/location.py
blob: 064b193aa060aeb61206d43e45fa75447a267405 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
from entities.basic_entity import BasicEntity


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

    def print_entity(self):
        print("Name = " + self.name)
        print("Name in langs = " + str(self.name_in_langs))
        print("Types = " + str(self.types_of_place))
        print("Comments = " + str(self.comments_list))