import {Constants} from "./constants";

export class CustomResponse<T> {
    code: string;
    message: number;
    data: T;
}
