src/app/_interfaces/servives/service.ts
Properties |
description |
description:
|
Type : string
|
marchand |
marchand:
|
Type : string
|
nom_service |
nom_service:
|
Type : string
|
service_id |
service_id:
|
Type : number
|
export interface IService {
service_id: number;
nom_service: string;
description: string;
marchand: string;
}