feat: remove parent item category from item categories service.

This commit is contained in:
Ahmed Bouhuolia
2020-12-02 17:38:49 +02:00
parent e0f1b71930
commit ac6904daaa
5 changed files with 1 additions and 22 deletions

View File

@@ -4,8 +4,6 @@ import { ISystemUser } from "./User";
export interface IItemCategory {
id: number,
name: string,
parentCategoryId?: number,
description?: string,
userId: number,
@@ -19,7 +17,6 @@ export interface IItemCategory {
export interface IItemCategoryOTD {
name: string,
parentCategoryId?: number,
description?: string,
userId: number,