pets/modelo/entidade.py

7 lines
123 B
Python

class Entidade:
def __init__(self, id_):
self.id = id_
def __str__(self):
return f"ID: {self.id}"