export interface attributeInterface {
  _id: string;
  attributeName: string;
  subCategoryId:string;
  attributeType: string | null;
  shortDescription: string | null;
  longDescription: string | null;
  updated_at: string;
  created_at: string;
  createdBy: {
    name: string;
    dateTime: string;
    _id: string;
  };
  deleted: boolean;
  userId: string;
}
