src/app/Category.ts
code |
code: |
Type : string
|
coverImage |
coverImage: |
Type : string
|
id |
id: |
Type : number
|
title |
title: |
Type : string
|
export interface Category {
id?: number;
title: string;
code: string;
coverImage: string;
}