export interface variationInterface {
  _id: string;
  attributeId: string;
  variationName: string;
  variationValue: 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;
}
