export interface brandInterface {
  _id: string;
  brandName: string;
  updated_at: string;
  created_at: string;
  createdBy: {
    name: string;
    dateTime: string;
    _id: string;
  };
  deleted: boolean;
  userId: string;
}
