export interface Itoken {
    accessToken: string;
    tokenType: string;
    tokenDataLine: Date;
    scope: string;
}
