class entry: def __init__(self, domain, type='A', content='127.0.0.1'): self.domain = domain self.type = type self.content = content self.subdomains = list() def add_subdomain(self, entry): self.subdomains.append(entry)