ngx-admin/src/app/admin/category/category-count.model.ts

10 lines
161 B
TypeScript
Raw Normal View History

2024-10-13 16:57:31 -03:00
export class CategoryCount {
Product?: number;
SubCategory?: number;
constructor(){
this.Product = 0;
this.SubCategory = 0;
}
}