Commit cfd082d9 authored by Lorenzo Trujillo Rojas's avatar Lorenzo Trujillo Rojas
Browse files

Se agregaron las categorias de forma opcional a una actividad

parent 28368057
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -10,4 +10,11 @@ export interface ActivityModel {
  closeAt: number;
  startDate: Date | null;
  endDate: Date | null;
  categories?: TagModel[];
}

export interface TagModel {
  idCategory: number;
  language: string;
  name: string;
}