saving with admin and public base

This commit is contained in:
Betteloni 2024-10-13 16:57:31 -03:00
parent 06776d15c4
commit dd1b2763d8
425 changed files with 21493 additions and 11663 deletions

View file

@ -0,0 +1,9 @@
export class CategoryCount {
Product?: number;
SubCategory?: number;
constructor(){
this.Product = 0;
this.SubCategory = 0;
}
}