src/app/_interfaces/trafics/operateur/operateur.ts
Properties |
code |
code:
|
Type : string
|
etat |
etat:
|
id |
id:
|
Type : number
|
information |
information:
|
Type : string
|
liens |
liens:
|
Type : string
|
status |
status:
|
Type : number
|
export interface IOperateur {
id: number;
code: string;
liens: string;
etat: true;
status: number;
information: string;
}