export interface IAuthToken {
    tokenType: string;
    expiresIn: number;
    accessToken: string
}