@bit-ui-libs/common
Version:
This library was generated with [Nx](https://nx.dev).
18 lines (16 loc) • 403 B
text/typescript
import { CategoryStatusEnum } from '../constants';
import { AssetType } from './asset-template';
export interface AssetCategory {
id: string;
name: string;
description: string;
parentId: string | null;
appName: string;
isFinal: boolean;
imageUrl: string | null;
types?: AssetType[];
createdAt?: string;
updatedAt?: string;
deletedAt: string | null;
state: CategoryStatusEnum;
}