From 9b2a218654dfea1b83bf23ccc0d0910ab0a2285d Mon Sep 17 00:00:00 2001 From: Juan Lopez Date: Mon, 10 Jul 2023 19:39:30 -0600 Subject: [PATCH 1/2] Create miembro.puml Complentado [Miembros] Crear el diagrama de clase #64 --- docs/source/backend/miembro.puml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 docs/source/backend/miembro.puml diff --git a/docs/source/backend/miembro.puml b/docs/source/backend/miembro.puml new file mode 100644 index 0000000..f3e5c93 --- /dev/null +++ b/docs/source/backend/miembro.puml @@ -0,0 +1,10 @@ +@startuml +class Miembro{ + +nombre: str + +apellido: str + #correo : str + +username: str + #telefono: int + +pais: str +} +@enduml From faf7aa062f787251f27a87269e153ee26e669175 Mon Sep 17 00:00:00 2001 From: Juan Lopez Date: Tue, 11 Jul 2023 10:08:39 -0600 Subject: [PATCH 2/2] Update miembro.puml Actualizacion de entidad miembros --- docs/source/backend/miembro.puml | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/docs/source/backend/miembro.puml b/docs/source/backend/miembro.puml index f3e5c93..4364897 100644 --- a/docs/source/backend/miembro.puml +++ b/docs/source/backend/miembro.puml @@ -1,10 +1,19 @@ @startuml class Miembro{ - +nombre: str - +apellido: str - #correo : str - +username: str + +titulo: str + +nombres: str + +apellidos: str + +genero: str + +organizacion: str + +direccion: str #telefono: int + #correo : str + +perfilLinkedin: str + +perfilIndico: str + +perfilDiscord: str + +skills: str + +intereses: str + +idiomas: str +pais: str } @enduml