src/app/models/ose-maps.ts
| background |
background: |
| city |
city: |
| competencies |
competencies: |
| hasVideo |
hasVideo: |
Default value: false
|
| id |
id: |
| intro |
intro: |
| introRead |
introRead: |
Default value: false
|
| isFiche |
isFiche: |
Default value: false
|
| isTotalExCompleted |
isTotalExCompleted: |
| svgUrl |
svgUrl: |
| svgUrlDev |
svgUrlDev: |
| svgUrlIos |
svgUrlIos: |
| tag |
tag: |
| title |
title: |
import { OseCompetencies } from "./ose-competencies";
export class OseMap {
id: number;
title: string;
city: string;
background: string;
competencies: Array<OseCompetencies>;
svgUrl: string;
svgUrlDev: string;
svgUrlIos: string
isFiche = false;
hasVideo = false;
intro: string;
introRead = false;
tag: string;
isTotalExCompleted? : boolean;
}
export class TerritoireMap {
id:number;
afficher: boolean;
afficher_client: boolean;
nom: string;
carte: string;
carteDev: string;
carteIos: string;
tag: string;
type: string;
title: string;
url: string;
code: string;
intro: string;
introRead = false;
logo: string;
scene360?: string;
}