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

Se creó una interface para definir la estructura que tendrá un punto en la actividad

parent 13137d90
Loading
Loading
Loading
Loading
+19 −0
Original line number Diff line number Diff line
export interface ActivityPlaceEntity {
    idPlaceActivity: number;
    name: string;
    number: number;
    idPlace: number;
    imageUrl: string;
    directions?: DirectionEntity;
    content: ContentEntity
}

interface DirectionEntity {
    content: string;
    speakUrl: string;
}

interface ContentEntity {
    content: string;
    speakUrl: string;
}
 No newline at end of file