export interface LogOutResponse {
    result: boolean;
    errormsg: string | null;
    errorcode: number;
    detail: string | null;
}
