export interface Token {
    access_Token: string;
    token_Type: string;
    refresh_Token: string;
    expires_In: string;
    scope: string;
}
