SistemaNotas / model /Criterio.py
Gualguanosky
ARCHIVOS VARIOS
08c979a
raw
history blame contribute delete
225 Bytes
import json
class Criterio:
def __int__(self, descripcion, categoria):
self._descripcion = descripcion
self._categoria = categoria
def __str__(self) -> str:
return json.dump(self.__dict__)