import { WithAll, WithOutAll } from "tools-packages"; export interface Category extends WithAll { ownerId: string; headCategoryId: string; name: string; color: string; icon: string; isRemoved?: boolean; } export interface AddCategory extends WithOutAll { } export interface UpdateCategory extends Partial { } export interface PayloadAddCategory extends Omit { } export interface PayloadUpdateCategory extends Omit { }