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,16 @@
import { CategoryCount } from "./category-count.model";
export class Category {
id!: string;
name!: string;
createdAt!: Date;
updatedAt!: Date | null;
//Products?: Array<Product>;
SubCategory?: Array<any>; //TODO:
_count?: CategoryCount;
constructor() {
this.SubCategory = [];
this._count = new CategoryCount();
}
}