I refer to the answer from Ionic - Horizontal scroll tab for Categories.
Could anyone tell me what should be included in the category.model?
I refer to the answer from Ionic - Horizontal scroll tab for Categories.
Could anyone tell me what should be included in the category.model?
category.model
is the file which will have the CategoryModel
interface.
it should have:
export interface CategoryModel {
id: number,
name: string
// add more things here based on your need
}
Read more about interfaces here: typescript interfaces