export interface subCategoryInterface {
  _id: string;
  categoryId: string;
  subCategoryName: string;
  subCategoryImage: null | string;
  shortDescription: null | string;
  longDescription: null | string;
  updated_at: string;
  created_at: string;
  createdBy: {
    name: string;
    dateTime: string;
    _id: string;
  };
  deleted: boolean;
  userId: string;
}
