import { ITenant } from '../user/model';
export interface User {
    id?: string;
    username?: string;
    password?: string;
    token?: string;
    tenant?: ITenant;
    exp?: number;
    ten?: string;
    ro?: string;
    uid?: string;
    oid?: string;
}
export interface LoginInfo {
    code: string;
    name: string;
    loginUrl: string;
    logoutUrl: string;
    checkTicketPath: string;
    callbackUrl: string;
}
export interface TRefreshToken {
    token: string;
}
