export interface IRequestSend<T> {
    status: boolean;
    data: T | null;
    err?: string;
}
