import { ResponseBase } from "./ResponseTypes"; export interface ResponseWrapper { success: boolean; message?: string; content: T; }