import { RequestAttachmentCreateOrUpdate } from './requestAttachmentCreateOrUpdate'; import { RequestSubCategoryCreateOrUpdate } from './requestSubCategoryCreateOrUpdate'; export interface RequestCategoryCreateOrUpdate { name: string; subCategories?: RequestSubCategoryCreateOrUpdate[]; attachments?: RequestAttachmentCreateOrUpdate[]; }